Skip to content

fix: version errors for new configurations #0000 #2

fix: version errors for new configurations #0000

fix: version errors for new configurations #0000 #2

# Managed by https://github.com/linkorb/repo-ansible. Manual changes will be overwritten.
name: Auto-merge Dependabot PRs
on: pull_request_target
permissions:
pull-requests: write # required for the action to read metadata
contents: write # required for the gh client to read/merge commits
jobs:
run:
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }}
steps:
- id: metadata
uses: dependabot/fetch-metadata@v2
- if: steps.metadata.outputs.update-type == 'version-update:semver-minor' || steps.metadata.outputs.update-type == 'version-update:semver-patch'
run: gh pr merge --merge "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ github.token }}