We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6730d54 commit a8d20a5Copy full SHA for a8d20a5
.github/workflows/auto-assign.yml
@@ -8,7 +8,7 @@ jobs:
8
run:
9
runs-on: ubuntu-latest
10
# Skip this workflow for pull requests from forks as GITHUB_TOKEN lacks write permissions
11
- if: github.event_name == 'issues' || github.event.pull_request.head.repo.full_name == github.repository
+ if: github.event_name == 'issues' || (github.event.pull_request != null && github.event.pull_request.head.repo.full_name == github.repository)
12
permissions:
13
issues: write
14
pull-requests: write
0 commit comments