You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
572 B
22 lines
572 B
name: Trigger Dependabot Auto Merge Forward |
|
|
|
on: |
|
push: |
|
branches: |
|
- '*.x' |
|
|
|
permissions: read-all |
|
|
|
jobs: |
|
trigger-worflow: |
|
name: Trigger Workflow |
|
runs-on: ubuntu-latest |
|
if: ${{ github.event.commits[0].author.username == 'dependabot[bot]' && github.repository == 'spring-projects/spring-security' }} |
|
steps: |
|
- name: Checkout |
|
id: checkout |
|
uses: actions/checkout@v4 |
|
- id: trigger |
|
env: |
|
GH_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }} |
|
run: gh workflow run dependabot-auto-merge-forward.yml -r main
|
|
|