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 07cad02 commit 37dffc8Copy full SHA for 37dffc8
1 file changed
.github/workflows/ci.yml
@@ -54,6 +54,12 @@ jobs:
54
name: Test
55
runs-on: ubuntu-latest
56
timeout-minutes: 20
57
+ # Integration tests push to the repo, which requires a token with write
58
+ # access. Fork PRs only get a read-only GITHUB_TOKEN, so skip them here
59
+ # and rely on merge_group to gate the merge.
60
+ if: >-
61
+ github.event_name != 'pull_request' ||
62
+ github.event.pull_request.head.repo.full_name == github.repository
63
permissions:
64
contents: write # integration tests create and push temporary branches
65
steps:
0 commit comments