Skip to content

Commit

Permalink
Merge branch '6.2.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusdacoregio committed Jan 24, 2024
2 parents f6969af + 02b9180 commit 8344cfc
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/trigger-auto-merge-forward.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Trigger Auto Merge Forward

on:
push:

permissions:
contents: write

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 auto-merge-forward.yml -r main

0 comments on commit 8344cfc

Please sign in to comment.