File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -170,7 +170,11 @@ jobs:
170
170
needs : [ matrix, build ]
171
171
# Only open tickets for failed or cancelled jobs that are not coming from PRs.
172
172
# (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
174
178
runs-on : ubuntu-latest
175
179
steps :
176
180
- uses : jayqi/failed-build-issue-action@v1
You can’t perform that action at this time.
0 commit comments