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 c0dc3c8 + 7520db6 commit c64e28aCopy full SHA for c64e28a
1 file changed
.github/workflows/pulls-merged.yml
@@ -14,6 +14,7 @@ permissions:
14
15
jobs:
16
pull-request-merged:
17
+ if: github.event.pull_request.merged
18
runs-on: ubuntu-latest
19
environment: botmobile
20
steps:
@@ -41,10 +42,10 @@ jobs:
41
42
43
- name: Thank you
44
if: |
- github.event.pull_request.merged == true &&
45
github.event.pull_request.author_association != 'OWNER' &&
46
github.event.pull_request.author_association != 'MEMBER' &&
47
- github.event.pull_request.author_association != 'COLLABORATOR'
+ github.event.pull_request.author_association != 'COLLABORATOR' &&
48
+ github.event.pull_request.author_association != 'CONTRIBUTOR'
49
env:
50
PR_NUMBER: ${{ github.event.pull_request.number }}
51
GH_TOKEN: ${{ steps.app-token.outputs.token || github.token }}
0 commit comments