Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

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

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

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

Workflow file for this run

name: Dependabot
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: latest
cache: 'yarn'
- name: Install node dependencies
run: yarn --frozen-lockfile
- name: Build
run: yarn build
auto-merge:
needs: build
if: ${{ github.actor == 'dependabot[bot]' }}
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Auto-merge Dependabot PRs
run: gh pr merge --auto --rebase "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}