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 34023c6 + ef82f8c commit fc4f09dCopy full SHA for fc4f09d
.github/workflows/branch-deploy.yaml
@@ -21,7 +21,8 @@ jobs:
21
name: Validate trigger author
22
runs-on: ubuntu-latest
23
if: |
24
- github.event_name == 'pull_request'
+ github.event_name == 'pull_request' &&
25
+ github.actor != 'dependabot[bot]'
26
outputs:
27
is_org_member: ${{ steps.validate.outputs.is_member }}
28
steps:
@@ -209,7 +210,9 @@ jobs:
209
210
notify-slack:
211
name: Notify about pre-staging deployment
212
needs: [deploy]
- if: success() || failure()
213
+ if: |
214
+ ( success() || failure() ) &&
215
216
217
env:
218
PR_NUMBER: ${{ github.event.number }}
0 commit comments