Bump core from 6210262
to 71430d4
#165
Workflow file for this run
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: Verify labels | |
on: | |
pull_request: | |
branches: | |
- "main" | |
paths: | |
- "package.json" | |
- "eng/common/config/" | |
- "eng/common/labels/" | |
- ".github/workflows/sync-labels.yml" | |
- "CONTRIBUTING.md" | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: ./.github/actions/setup | |
- run: pnpm install | |
name: Install dependencies | |
- run: pnpm sync-labels --github --check | |
name: Verify labels | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |