Skip to content

feat(pricing): runcycles.ai managed cloud + reposition toward production assurance #505

feat(pricing): runcycles.ai managed cloud + reposition toward production assurance

feat(pricing): runcycles.ai managed cloud + reposition toward production assurance #505

name: Dependabot auto-merge
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
automerge:
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- name: Fetch Dependabot metadata
id: meta
uses: dependabot/fetch-metadata@v3
- name: Enable auto-merge for patch updates
if: steps.meta.outputs.update-type == 'version-update:semver-patch'
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
# AUTOMERGE_PAT (repo+workflow scope) lets auto-merge work on PRs that
# touch .github/workflows/** (e.g. github-actions bumps); the default
# GITHUB_TOKEN is forbidden by GitHub from doing so. Falls back to
# GITHUB_TOKEN when the secret is absent (unchanged behavior).
GH_TOKEN: ${{ secrets.AUTOMERGE_PAT || secrets.GITHUB_TOKEN }}