From 0303e9cb36902007354e9a5ed9fbc147c9ebe70f Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sun, 24 Mar 2024 18:19:32 +0100 Subject: [PATCH] Adds "untriaged" labeler workflow (#26392) All new opened issues automatically get marked as "untriaged", so a maintainer can go through them properly. --- .github/workflows/labeler-untriaged.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/labeler-untriaged.yml diff --git a/.github/workflows/labeler-untriaged.yml b/.github/workflows/labeler-untriaged.yml new file mode 100644 index 0000000000..630122aa08 --- /dev/null +++ b/.github/workflows/labeler-untriaged.yml @@ -0,0 +1,13 @@ +name: "Labels: Untriaged" + +on: + issues: + types: [opened] + +jobs: + add_label: + runs-on: ubuntu-latest + steps: + - uses: actions-ecosystem/action-add-labels@v1 + with: + labels: "Status: Untriaged" -- 2.51.2