浏览代码

Create triage label workflow

Roman Zabaluev 3 年之前
父节点
当前提交
6e198167dc
共有 1 个文件被更改,包括 14 次插入0 次删除
  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