-
-
Notifications
You must be signed in to change notification settings - Fork 15
23 lines (22 loc) · 612 Bytes
/
labels.yml
File metadata and controls
23 lines (22 loc) · 612 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# yamllint disable rule:document-start
# yamllint disable rule:line-length
# Workflow handling available labels in the repository. The list of labels is declared in .github/labels.json
name: Label management
on:
push:
paths:
- .github/labels.json
- .github/workflows/labels.yml
branches:
- main
workflow_dispatch:
jobs:
label:
name: Manage GitHub labels
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Manage labels
uses: lannonbr/issue-label-manager-action@4.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}