-
-
Notifications
You must be signed in to change notification settings - Fork 0
24 lines (21 loc) · 658 Bytes
/
Copy pathlabels.yml
File metadata and controls
24 lines (21 loc) · 658 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Sync repo labels from .github/labels.yml (the labels the templates, Dependabot,
# and the stale bot reference). Runs on change + on demand. Uses the default token
# (label management needs write, not admin).
name: Labels
on:
push:
branches: [master]
paths: [".github/labels.yml", ".github/workflows/labels.yml"]
workflow_dispatch:
permissions:
contents: read
issues: write
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: crazy-max/ghaction-github-labeler@v6
with:
yaml-file: .github/labels.yml
skip-delete: true # never delete labels this file doesn't list