Skip to content

Commit 4bd47b3

Browse files
committed
Add github label sync
1 parent 486a2a7 commit 4bd47b3

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

.github/labels.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
- name: add
2+
description: Add new features.
3+
color: "006400"
4+
- name: change
5+
description: Change existing functionality.
6+
color: "fbca04"
7+
- name: deprecate
8+
description: Mark as soon-to-be removed features.
9+
color: "a9a9a9"
10+
- name: remove
11+
description: Remove features.
12+
color: "dda0dd"
13+
- name: bug
14+
description: Fix bug.
15+
color: "dc143c"
16+
- name: security
17+
description: In case of vulnerabilities.
18+
color: "800080"
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: github-label-sync
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
paths:
8+
- .github/workflows/github-label-sync.yml
9+
- .github/labels.yml
10+
workflow_dispatch:
11+
12+
jobs:
13+
sync:
14+
runs-on: ubuntu-22.04
15+
steps:
16+
- uses: r7kamura/github-label-sync-action@v0

0 commit comments

Comments
 (0)