lotus/.github/workflows/label-syncer.yml
David Dias ded5f5a4c6
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
2020-07-29 19:28:38 +02:00

18 lines
328 B
YAML

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 }}