Skip to content

Bump docker/metadata-action from ef25336f420be2d1a49205baf41a9b88712a65a1 to 879dcbb708d40f8b8679d4f7941b938a086e23a7 #229

Bump docker/metadata-action from ef25336f420be2d1a49205baf41a9b88712a65a1 to 879dcbb708d40f8b8679d4f7941b938a086e23a7

Bump docker/metadata-action from ef25336f420be2d1a49205baf41a9b88712a65a1 to 879dcbb708d40f8b8679d4f7941b938a086e23a7 #229

Workflow file for this run

name: Dependabot
on: pull_request
permissions:
pull-requests: write
contents: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/[email protected]
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Approve a PR
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 for Dependabot PRs
if: ${{steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}