From cb06c973c7e012517adca311d08572bcb548f510 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Ber=C3=A1nek?= Date: Sun, 25 Jun 2023 15:55:27 +0200 Subject: [PATCH] CI: do not run Bump dependencies workflow on forks --- .github/workflows/dependencies.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index 2eccd28e5bb1f..26d2ba636f3e3 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -25,6 +25,7 @@ env: jobs: not-waiting-on-bors: + if: github.repository_owner == 'rust-lang' name: skip if S-waiting-on-bors runs-on: ubuntu-latest steps: @@ -43,6 +44,7 @@ jobs: fi update: + if: github.repository_owner == 'rust-lang' name: update dependencies needs: not-waiting-on-bors runs-on: ubuntu-latest @@ -76,6 +78,7 @@ jobs: retention-days: 1 pr: + if: github.repository_owner == 'rust-lang' name: amend PR needs: update runs-on: ubuntu-latest