Skip to content

Commit 4950c33

Browse files
committed
Don’t allow CI to open issues on forks
Forks generally don’t have issues enabled, so jobs that try to create an issue will fail there.
1 parent e41d268 commit 4950c33

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci-build-crates.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,11 @@ jobs:
170170
needs: [ matrix, build ]
171171
# Only open tickets for failed or cancelled jobs that are not coming from PRs.
172172
# (PR statuses are already reported in the PR jobs list, and checked by GitHub's Merge Queue.)
173-
if: (failure() && github.event.pull_request == null) || (cancelled() && github.event.pull_request == null)
173+
#
174+
# NB: This creates issues, so will fail on repos that have issues disabled (e.g., forks).
175+
# Unfortunately, there doesn’t seem to be a GitHub property that says whether issues are
176+
# enabled, so we check that the repo is in the ZcashFoundation org as a proxy.
177+
if: (failure() || cancelled()) && github.repository_owner == 'ZcashFoundation' && github.event.pull_request == null
174178
runs-on: ubuntu-latest
175179
steps:
176180
- uses: jayqi/failed-build-issue-action@v1

0 commit comments

Comments
 (0)