From b82a0d56553a71b312ec1e6006158d8de89d3923 Mon Sep 17 00:00:00 2001 From: max furman <mx.furman@gmail.com> Date: Tue, 4 May 2021 11:35:52 -0700 Subject: [PATCH] [action] Add needs triage labeler for pull requests --- .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 0000000..4f507a7 --- /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 0000000..9311145 --- /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 -- GitLab