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 3bb0c55 commit 688aeb9Copy full SHA for 688aeb9
.github/workflows/ci.yml
@@ -16,10 +16,11 @@ jobs:
16
if: |
17
!contains(github.event.head_commit.message, 'skip ci') &&
18
(github.event_name != 'pull_request' || (
19
- github.actor_association == 'CONTRIBUTOR' ||
20
- github.actor_association == 'MEMBER' ||
21
- github.actor_association == 'COLLABORATOR' ||
22
- github.actor_association == 'OWNER'
+ github.event.pull_request.author_association == 'CONTRIBUTOR' ||
+ github.event.pull_request.author_association == 'COLLABORATOR' ||
+ github.event.pull_request.author_association == 'MANNEQUIN' ||
+ github.event.pull_request.author_association == 'MEMBER' ||
23
+ github.event.pull_request.author_association == 'OWNER'
24
))
25
26
runs-on: ubuntu-latest
0 commit comments