mirror of
https://github.com/danbulant/lucide
synced 2026-06-18 22:11:40 +00:00
21 lines
414 B
YAML
21 lines
414 B
YAML
name: Labels
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
issues: write
|
|
|
|
jobs:
|
|
sync-labels:
|
|
name: Sync Labels
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
with:
|
|
sparse-checkout: .github/labels.yml
|
|
|
|
- uses: EndBug/label-sync@v2
|
|
with:
|
|
config-file: .github/labels.yml
|