]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Adds "untriaged" labeler workflow (#26392)
authorPieter-Jan Briers <pieterjan.briers+git@gmail.com>
Sun, 24 Mar 2024 17:19:32 +0000 (18:19 +0100)
committerGitHub <noreply@github.com>
Sun, 24 Mar 2024 17:19:32 +0000 (18:19 +0100)
All new opened issues automatically get marked as "untriaged", so a maintainer can go through them properly.

.github/workflows/labeler-untriaged.yml [new file with mode: 0644]

diff --git a/.github/workflows/labeler-untriaged.yml b/.github/workflows/labeler-untriaged.yml
new file mode 100644 (file)
index 0000000..630122a
--- /dev/null
@@ -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"