Skip to content
This repository was archived by the owner on Nov 3, 2025. It is now read-only.

Create Repository Labels #266

Create Repository Labels

Create Repository Labels #266

Workflow file for this run

---
"on":
push:
branches:
- trunk
paths:
- .github/labels.yaml
- .github/workflows/repo-labels.yaml
pull_request:
branches:
- trunk
paths:
- .github/labels.yaml
- .github/workflows/repo-labels.yaml
schedule:
- cron: "0 0 * * TUE"
name: Create Repository Labels
jobs:
labels:
name: Synchronize repository labels
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Sync GitHub Issue Labels
uses: crazy-max/ghaction-github-labeler@24d110aa46a59976b8a7f35518cb7f14f434c916 # v5.3.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
yaml-file: .github/labels.yaml
skip-delete: false
dry-run: ${{ github.ref != 'refs/heads/trunk' }}