build(deps): bump dependabot/fetch-metadata from 1.6.0 to 2.2.0 #430
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
name: Dependabot Pull Request Approve and Merge | |
on: | |
pull_request_target: | |
permissions: | |
pull-requests: write | |
contents: write | |
jobs: | |
dependabot: | |
name: Dependabot Pull Request Approve and Merge | |
runs-on: ubuntu-latest | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
steps: | |
- name: Retrieve Dependabot Pull Request Metadata | |
id: dependabot-metadata | |
uses: dependabot/fetch-metadata@v2.2.0 | |
with: | |
github-token: '${{ secrets.GITHUB_TOKEN }}' | |
- name: Approve Dependabot Pull Request | |
run: | | |
gh pr review --approve "$PR_URL" | |
env: | |
PR_URL: ${{ github.event.pull_request.html_url }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Enable Auto Merge Dependabot Pull Request | |
if: ${{ steps.dependabot-metadata.outputs.update-type != 'version-update:semver-major' }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PR_URL: ${{ github.event.pull_request.html_url }} | |
run: | | |
gh pr merge --auto --rebase "$PR_URL" |