Skip to content

Commit 688aeb9

Browse files
committed
[skip ci] Fix workflow safety check
1 parent 3bb0c55 commit 688aeb9

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,11 @@ jobs:
1616
if: |
1717
!contains(github.event.head_commit.message, 'skip ci') &&
1818
(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'
19+
github.event.pull_request.author_association == 'CONTRIBUTOR' ||
20+
github.event.pull_request.author_association == 'COLLABORATOR' ||
21+
github.event.pull_request.author_association == 'MANNEQUIN' ||
22+
github.event.pull_request.author_association == 'MEMBER' ||
23+
github.event.pull_request.author_association == 'OWNER'
2324
))
2425
2526
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)