You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by et...@apache.org on 2023/06/12 06:03:29 UTC

[iceberg] branch master updated: Build: skip scheduled workflows on forks (#7818)

This is an automated email from the ASF dual-hosted git repository.

etudenhoefner pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git


The following commit(s) were added to refs/heads/master by this push:
     new 386f9b8cee Build: skip scheduled workflows on forks (#7818)
386f9b8cee is described below

commit 386f9b8cee4738fffca588544f0bb64328de97ab
Author: Christopher Lambert <xn...@gmx.de>
AuthorDate: Mon Jun 12 08:03:22 2023 +0200

    Build: skip scheduled workflows on forks (#7818)
---
 .github/workflows/recurring-jmh-benchmarks.yml | 1 +
 .github/workflows/stale.yml                    | 1 +
 2 files changed, 2 insertions(+)

diff --git a/.github/workflows/recurring-jmh-benchmarks.yml b/.github/workflows/recurring-jmh-benchmarks.yml
index c6a1e80fe7..b864dc1120 100644
--- a/.github/workflows/recurring-jmh-benchmarks.yml
+++ b/.github/workflows/recurring-jmh-benchmarks.yml
@@ -27,6 +27,7 @@ on:
 
 jobs:
   run-benchmark:
+    if: github.repository_owner == 'apache'
     runs-on: ubuntu-22.04
     strategy:
       fail-fast: false
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
index cb95148ff8..566ae2441e 100644
--- a/.github/workflows/stale.yml
+++ b/.github/workflows/stale.yml
@@ -28,6 +28,7 @@ permissions:
 
 jobs:
   stale:
+    if: github.repository_owner == 'apache'
     runs-on: ubuntu-22.04
     steps:
       - uses: actions/stale@v8.0.0