Skip to content

ci: auto-merge Dependabot PRs #3

ci: auto-merge Dependabot PRs

ci: auto-merge Dependabot PRs #3

name: dependabot-auto-merge
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
auto-merge:
runs-on: ubuntu-22.04
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'ubisoft/NGitLab'
steps:
- name: Fetch dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@d7267f607e9d3fb96fc2fbe83e0af444713e90b7
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for patch and minor updates
if: steps.metadata.outputs.update-type != 'version-update:semver-major'
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}