Merge Dependabot PRs #72
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
# Merge Me! Documentation: https://github.com/ridedott/merge-me-action/ | |
name: "Merge Dependabot PRs" | |
on: | |
workflow_run: | |
types: | |
- "completed" | |
workflows: | |
- "build" | |
jobs: | |
merge-me: | |
name: "Merge me!" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Auto-merge" | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
uses: "ridedott/[email protected]" | |
with: | |
# This must be used as GitHub Actions token does not support pushing | |
# to protected branches. | |
GITHUB_TOKEN: ${{ secrets.MERGE_TOKEN }} |