mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-02-22 22:35:29 +00:00
21 lines
479 B
YAML
21 lines
479 B
YAML
name: Trigger Dependabot Auto Merge Forward
|
|
|
|
on:
|
|
push:
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
trigger-worflow:
|
|
name: Trigger Workflow
|
|
runs-on: ubuntu-latest
|
|
if: github.event.commits[0].author.username == 'dependabot[bot]'
|
|
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
|