Skip to content

⬆️ [ GitHub Actions ] (deps): Bump docker/build-push-action from 6.18.0 to 6.19.2 in the github-actions group #2

⬆️ [ GitHub Actions ] (deps): Bump docker/build-push-action from 6.18.0 to 6.19.2 in the github-actions group

⬆️ [ GitHub Actions ] (deps): Bump docker/build-push-action from 6.18.0 to 6.19.2 in the github-actions group #2

Workflow file for this run

---
name: Dependabot Automate
on:
workflow_call:
pull_request:
permissions:
contents: write
pull-requests: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@21025c705c08248db411dc16f3619e6b5f9ea21a
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}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}