feat: add label sync and label list (#2630)

* feat: add label sync and label list

* fix: move label-syncer to workflows folder so that actions detects it

* feat: update labels
This commit is contained in:
David Dias
2020-07-29 19:28:38 +02:00
committed by GitHub
parent c1a814c235
commit ded5f5a4c6
2 changed files with 252 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
name: Label syncer
on:
push:
paths:
- '.github/labels.yml'
branches:
- master
jobs:
build:
name: Sync labels
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1.0.0
- uses: micnncim/action-label-syncer@v1.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}