Skip to content

ci: add org-wide label taxonomy and label sync workflow #1

ci: add org-wide label taxonomy and label sync workflow

ci: add org-wide label taxonomy and label sync workflow #1

Workflow file for this run

name: Sync labels
# Keeps this repo's labels identical to .github/labels.yml (the org core set).
on:
push:
branches: [main]
paths: [".github/labels.yml"]
workflow_dispatch:
permissions:
issues: write
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: crazy-max/ghaction-github-labeler@v5
with:
yaml-file: .github/labels.yml
skip-delete: true
dry-run: false