Skip to content

chore(deps): Bump the all group across 7 directories with 8 updates #3

chore(deps): Bump the all group across 7 directories with 8 updates

chore(deps): Bump the all group across 7 directories with 8 updates #3

# Inspired by https://github.com/vercel/turborepo/blob/main/.github/workflows/examples-autoapprove-and-automerge.yml
# Auto-approves and auto-merges Dependabot PRs.
# If PRs involve an OpenAPI Spec package, also auto-regens generated API code before merging.
name: Dependabot automerge
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
dependabot-regen-api:
runs-on: ubuntu-latest
if:
- github.actor == 'dependabot[bot]'

Check failure on line 15 in .github/workflows/automerge-dependabot.yml

View workflow run for this annotation

GitHub Actions / Dependabot automerge

Invalid workflow file

The workflow is not valid. .github/workflows/automerge-dependabot.yml (Line: 15, Col: 8): A sequence was not expected
- contains(github.event.pull_request.title, "Bump the oas group")
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Regenerate API clients on OpenAPI Spec change
run: |
pnpm i
pnpm api:regen
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "feat(deps): Update OpenAPI Spec generated code"
git push
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
dependabot-approve:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Approve a PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
dependabot-merge:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --rebase "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}