From ef0ec77e84af36fa92e7152ea583fedf53c4d681 Mon Sep 17 00:00:00 2001 From: benrobo Date: Wed, 16 Nov 2022 15:24:54 -0800 Subject: [PATCH] feat: added github workflow for effective issues label --- .github/workflows/issues.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/issues.yml diff --git a/.github/workflows/issues.yml b/.github/workflows/issues.yml new file mode 100644 index 00000000..b0a37e17 --- /dev/null +++ b/.github/workflows/issues.yml @@ -0,0 +1,26 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# GitHub recommends pinning actions to a commit SHA. +# To get a newer version, you will need to update the SHA. +# You can also reference a tag or branch, but the action may change without warning. + +name: Label issues +on: + issues: + types: + - reopened + - opened +jobs: + label_issues: + runs-on: ubuntu-latest + permissions: + issues: write + steps: + - name: Label issues + uses: andymckay/labeler@e6c4322d0397f3240f0e7e30a33b5c5df2d39e90 + with: + add-labels: "help wanted, good first issue" + repo-token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file