Skip to content

Workflow file for this run

name: Sync labels
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: ["main", "label-sync"]
workflow_dispatch: {}
permissions:
issues: write
jobs:
test:

Check failure on line 14 in .github/workflows/sync-lablels.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/sync-lablels.yml

Invalid workflow file

You have an error in your yaml syntax on line 14
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: pnpm tsx ./eng/common/scripts/sync-labels.ts --update-github-labels --dry-run
name: Sync labels
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}