Skip to content

Label sync

Label sync #1

Workflow file for this run

name: CI
# 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
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
test:
# The type of runner that the job will run on

Check failure on line 17 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 17
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
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 }}