From f4e6231358360be2a78cd5a3f8a11b1c16e74039 Mon Sep 17 00:00:00 2001 From: Rob Matarangas <60708457+Robmat05@users.noreply.github.com> Date: Wed, 10 Jun 2020 15:37:32 -0700 Subject: [PATCH] Create label-syncer.yml Installing Labeler workflow --- .github/workflows/label-syncer.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/label-syncer.yml diff --git a/.github/workflows/label-syncer.yml b/.github/workflows/label-syncer.yml new file mode 100644 index 000000000..717e41183 --- /dev/null +++ b/.github/workflows/label-syncer.yml @@ -0,0 +1,16 @@ +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@v0.4.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}