Skip to content

Commit 4e702e9

Browse files
author
thomas loubrieu
committed
add labels synchronization as github action
1 parent c869433 commit 4e702e9

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/sync_labels.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Sync labels
2+
on:
3+
push:
4+
branches:
5+
- main
6+
paths:
7+
- labels.yml
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: micnncim/action-label-syncer@v1
14+
with:
15+
prune: false
16+
env:
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18+
with:
19+
manifest: path/to/manifest/labels.yml

0 commit comments

Comments
 (0)