Skip to content

chore(deps-dev): bump the dev-deps group with 3 updates #286

chore(deps-dev): bump the dev-deps group with 3 updates

chore(deps-dev): bump the dev-deps group with 3 updates #286

Workflow file for this run

name: pull_request
on: [pull_request]
jobs:
check:
runs-on: ubuntu-latest
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
steps:
- name: 🏗 Setup Repository
uses: actions/checkout@v4
- name: 📦 Install
uses: ./.github/actions/install
- name: 🚨 Check
run: bun check
auto-approve:
permissions:
pull-requests: write
contents: write
name: Auto Approve
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Metadata
id: metadata
uses: dependabot/fetch-metadata@v2
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}}
auto-merge:
permissions:
pull-requests: write
contents: write
name: Enable Auto Merge
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Metadata
id: metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}