From: Pieter-Jan Briers Date: Sun, 24 Mar 2024 17:19:32 +0000 (+0100) Subject: Adds "untriaged" labeler workflow (#26392) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=0303e9cb36902007354e9a5ed9fbc147c9ebe70f;p=space-station-14.git Adds "untriaged" labeler workflow (#26392) All new opened issues automatically get marked as "untriaged", so a maintainer can go through them properly. --- 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"