We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent baa5ba6 commit 484fa57Copy full SHA for 484fa57
.github/workflows/main.yml
@@ -5,6 +5,13 @@ on:
5
# However, it's very important that we don't run code from forks without sandboxing it,
6
# because that way anybody could potentially extract repository secrets!
7
pull_request_target:
8
+ # pull_request_target makes it very annoying to test updates to the workflow,
9
+ # because all such runs use the workflow file from the base branch, not the PR.
10
+ # This can be fixed by _also_ running it on `pull_request` events,
11
+ # but to not have duplicate runs for every PR, we only do that when any workflows are updated.
12
+ pull_request:
13
+ paths:
14
+ - '.github/workflows/**'
15
push:
16
branches:
17
- master
0 commit comments