-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (32 loc) · 877 Bytes
/
Copy pathlabel-sync.yaml
File metadata and controls
37 lines (32 loc) · 877 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
25
26
27
28
29
30
31
32
33
34
35
36
37
---
name: "Label Sync"
on:
workflow_dispatch:
push:
branches:
- "main"
paths:
- ".github/labels.yaml"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
label-sync:
name: Label Sync
runs-on: ubuntu-latest
permissions:
contents: read # required to read the labels configuration file
issues: write # required to write labels to issues
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
sparse-checkout: .github/labels.yaml
- name: Sync Labels
uses: EndBug/label-sync@52074158190acb45f3077f9099fea818aa43f97a # v2.3.3
with:
config-file: .github/labels.yaml
delete-other-labels: true