From deedd18a0ead8d0e7922588af8448f4029beb120 Mon Sep 17 00:00:00 2001 From: "Harris.Chu" <1726587+HarrisChu@users.noreply.github.com> Date: Tue, 29 Nov 2022 14:33:30 +0800 Subject: [PATCH] add auto label (#108) --- .github/workflows/check_label.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/check_label.yml diff --git a/.github/workflows/check_label.yml b/.github/workflows/check_label.yml new file mode 100644 index 00000000..e410727a --- /dev/null +++ b/.github/workflows/check_label.yml @@ -0,0 +1,22 @@ +name: Auto label + +on: + issues: + types: + - reopened + - opened + - labeled + - unlabeled + - closed + +env: + GH_PAT: ${{ secrets.GITHUB_TOKEN }} + EVENT: ${{ toJSON(github.event)}} + EVENT_NAME: ${{ github.event_name}} + +jobs: + sync: + name: auto label + runs-on: ubuntu-latest + steps: + - uses: HarrisChu/auto_label@v1