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 8f42c86 commit a3c06d9Copy full SHA for a3c06d9
.github/workflows/trigger-dependabot-auto-merge-forward.yml
@@ -1,15 +1,16 @@
1
name: Trigger Dependabot Auto Merge Forward
2
3
on:
4
- push:
+ pull_request:
5
+ types: [closed]
6
7
permissions: read-all
8
9
jobs:
10
trigger-worflow:
11
name: Trigger Workflow
12
runs-on: ubuntu-latest
- if: ${{ github.event.commits[0].author.username == 'dependabot[bot]' && github.repository == 'spring-projects/spring-security' }}
13
+ if: ${{ github.event.pull_request.merged == true && github.actor == 'dependabot[bot]' && github.repository == 'spring-projects/spring-security' }}
14
steps:
15
- name: Checkout
16
id: checkout
0 commit comments