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.
2 parents fc5437d + a8d20a5 commit 41efc0dCopy full SHA for 41efc0d
.github/workflows/auto-assign.yml
@@ -7,6 +7,8 @@ on:
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 != null && github.event.pull_request.head.repo.full_name == github.repository)
12
permissions:
13
issues: write
14
pull-requests: write
0 commit comments