Skip to content

chore(deps): update yarn to v4 #10

chore(deps): update yarn to v4

chore(deps): update yarn to v4 #10

Workflow file for this run

name: renovate
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
upgrade:
runs-on: ubuntu-latest
if: ${{ github.actor == 'renovate[bot]' && contains(github.event.pull_request.body, format('**Automerge**{0} Enabled.', ':')) }}
steps:
- name: Approve a PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}