From bc4bf224e88d957e4b8177532a6a98b66589cd7e Mon Sep 17 00:00:00 2001 From: max furman Date: Tue, 4 May 2021 11:29:53 -0700 Subject: [PATCH] [action] Add needs-triage labeler --- .github/needs-triage-labeler.yml | 2 ++ .github/workflows/labeler.yml | 14 ++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 .github/needs-triage-labeler.yml create mode 100644 .github/workflows/labeler.yml diff --git a/.github/needs-triage-labeler.yml b/.github/needs-triage-labeler.yml new file mode 100644 index 00000000..4f507a77 --- /dev/null +++ b/.github/needs-triage-labeler.yml @@ -0,0 +1,2 @@ +needs triage: +- "**" diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml new file mode 100644 index 00000000..9311145c --- /dev/null +++ b/.github/workflows/labeler.yml @@ -0,0 +1,14 @@ +name: labeler +on: + pull_request: + branches: + - master + +jobs: + label: + runs-on: ubuntu-latest + steps: + - uses: actions/labeler@v2 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}" + configuration-path: .github/needs-triage-labeler.yml