Browse Source

Create triage label workflow

Roman Zabaluev 3 years ago
parent
commit
6e198167dc
1 changed files with 14 additions and 0 deletions
  1. 14 0
      .github/workflows/triage.yml

+ 14 - 0
.github/workflows/triage.yml

@@ -0,0 +1,14 @@
+name: Triage label new issues
+on:
+  issues:
+    types:
+      - opened
+jobs:
+  triage_label_issues:
+    runs-on: ubuntu-latest
+    steps:
+      - name: Label issues
+        uses: andymckay/labeler@master
+        with:
+          add-labels: "status/triage"
+          ignore-if-assigned: true