Skip to content

build(deps): bump org.apache.maven.plugins:maven-deploy-plugin from 3.1.4 to 3.2.0 #192

build(deps): bump org.apache.maven.plugins:maven-deploy-plugin from 3.1.4 to 3.2.0

build(deps): bump org.apache.maven.plugins:maven-deploy-plugin from 3.1.4 to 3.2.0 #192

name: Dependabot Auto-Merge

Check warning on line 1 in .github/workflows/dependabot-auto-merge.yml

View workflow run for this annotation

GitHub Actions / Dependabot Auto-Merge

Workflow execution policy warning (evaluate mode)

On November 2, 2026, GitHub will restrict `pull_request_target` on public repositories by default. To continue allowing the event trigger, configure an Actions policy. Learn more: https://gh.io/securely-using-pull_request_target#default-policy-for-pull_request_target
on: pull_request_target
permissions:
contents: write
pull-requests: write
jobs:
dependabot:
name: Enable Auto-Merge
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v3
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for Dependabot PRs
run: |
gh pr review --approve "$PR_URL" || true
gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}