-
-
Notifications
You must be signed in to change notification settings - Fork 131
25 lines (22 loc) · 708 Bytes
/
labels.yml
File metadata and controls
25 lines (22 loc) · 708 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
---
on:
- "issues"
- "label"
- "workflow_dispatch"
name: "Labels"
jobs:
synchronize-labels:
name: "Synchronize Labels"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout Code"
uses: "actions/checkout@v3"
timeout-minutes: 5
with:
fetch-depth: 0
- name: "Synchronize Labels"
uses: "micnncim/action-label-syncer@v1"
with:
manifest: ".github/labels.yml"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"