Skip to content

Bump docker/setup-buildx-action from 3.7.1 to 3.8.0 #2

Bump docker/setup-buildx-action from 3.7.1 to 3.8.0

Bump docker/setup-buildx-action from 3.7.1 to 3.8.0 #2

Workflow file for this run

name: Dependabot Auto-Merge
on:
pull_request:
branches:
- main
paths:
- '.github/**'
permissions:
contents: write
pull-requests: write
jobs:
automerge:
name: Auto-Merge
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Process Dependabot Pull Request
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
# Approve and merge Dependabot PR automatically
gh pr review ${{ github.event.pull_request.html_url }} --approve
gh pr edit ${{ github.event.pull_request.html_url }} --add-label auto-merged
gh pr merge ${{ github.event.pull_request.html_url }} --merge