From e6763770a0a96d9f2fce69abe9f2bacb02ec6dda Mon Sep 17 00:00:00 2001 From: Josh Moore Date: Fri, 29 May 2020 08:42:58 -0600 Subject: [PATCH] Create labeler.yml Added labeler for issues (1/2) --- .github/workflows/labeler.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/labeler.yml diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml new file mode 100644 index 0000000..9c55c86 --- /dev/null +++ b/.github/workflows/labeler.yml @@ -0,0 +1,13 @@ +name: RegEx Issue Labeler +on: + issues: + types: [opened, edited] + +jobs: + add_label: + runs-on: ubuntu-latest + steps: + - uses: github/issue-labeler@v2.1 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}" + configuration-path: .github/labeler.yml