From 96e9e55642bd23bb9aad5938cfb7e0b7acefa233 Mon Sep 17 00:00:00 2001 From: Kowlin Date: Wed, 8 Jan 2020 18:21:42 +0100 Subject: [PATCH] Added an auto labeler. (#3282) --- .github/workflows/auto_labeler.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/auto_labeler.yml diff --git a/.github/workflows/auto_labeler.yml b/.github/workflows/auto_labeler.yml new file mode 100644 index 000000000..7d09c14a8 --- /dev/null +++ b/.github/workflows/auto_labeler.yml @@ -0,0 +1,17 @@ +name: Auto Labeler +on: + issues: + types: [opened] + +jobs: + build: + + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Apply Triage Label + uses: actions/github@v1.0.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + args: 'label "Status: Needs Triage"'