feat(pricing): runcycles.ai managed cloud + reposition toward production assurance #505
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 }} |