Make trigger-dependabot-auto-merge-forward.yml run on push
Issue gh-14721
This commit is contained in:
parent
37984c2e11
commit
a6d362fa18
|
@ -1,8 +1,9 @@
|
||||||
name: Trigger Dependabot Auto Merge Forward
|
name: Trigger Dependabot Auto Merge Forward
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
push:
|
||||||
types: [closed]
|
branches:
|
||||||
|
- '*.x'
|
||||||
|
|
||||||
permissions: read-all
|
permissions: read-all
|
||||||
|
|
||||||
|
@ -10,7 +11,7 @@ jobs:
|
||||||
trigger-worflow:
|
trigger-worflow:
|
||||||
name: Trigger Workflow
|
name: Trigger Workflow
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: ${{ github.event.pull_request.merged == true && github.actor == 'dependabot[bot]' && github.repository == 'spring-projects/spring-security' }}
|
if: ${{ github.event.commits[0].author.username == 'dependabot[bot]' && github.repository == 'spring-projects/spring-security' }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
id: checkout
|
id: checkout
|
||||||
|
|
Loading…
Reference in New Issue