浏览代码

Add auto-label-new-issues workflow (#1252)

Bianca Burtoiu 4 年之前
父节点
当前提交
9044da0894
共有 1 个文件被更改,包括 14 次插入0 次删除
  1. 14 0
      .github/workflows/auto_label_issues.yml

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

@@ -0,0 +1,14 @@
+name: auto-label-new-issues
+
+on:
+  issues:
+    types: [opened]
+
+jobs:
+  automate-issues-labels:
+    runs-on: ubuntu-latest
+    steps:
+      - name: Label new issues with 'needs-triage'
+        uses: andymckay/labeler@1.0.4
+        with:
+          add-labels: "needs-triage"