chore(deps): update dependency vitest to v2 (#2371) #1
This file contains 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: Github Label Sync | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- ".github/labels.json" | |
jobs: | |
label-sync: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install github-label-sync | |
run: sudo npm install --global github-label-sync | |
- name: Sync labels | |
run: | | |
github-label-sync \ | |
--access-token ${{ secrets.GITHUB_TOKEN }} \ | |
--labels ".github/labels.json" \ | |
--allow-added-labels \ | |
${{ github.repository }} |