Auto-merge dependency updates #2499
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow automatically merges dependency updates provided by dependabot. | |
# It will run whenever the workflow defined below passes and branch protection rules are satisfied. | |
name: Auto-merge dependency updates | |
on: | |
workflow_run: | |
types: | |
- "completed" | |
# Update this to match the name of your CI workflow, which must pass before updates are merged. | |
workflows: | |
- "ORCA CI" | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
automerge: | |
uses: acquia/.github/.github/workflows/automerge.yml@main | |
secrets: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |