From 9e784f35c8af34037c0aef983ab9dbd6a5265c47 Mon Sep 17 00:00:00 2001 From: Will Dean Date: Wed, 16 Oct 2024 19:38:53 -0400 Subject: [PATCH] add action to label untouched issues --- .github/workflows/label-blank-issue.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/label-blank-issue.yml diff --git a/.github/workflows/label-blank-issue.yml b/.github/workflows/label-blank-issue.yml new file mode 100644 index 00000000..e8021c36 --- /dev/null +++ b/.github/workflows/label-blank-issue.yml @@ -0,0 +1,16 @@ +# Taken from scikit-learn repo +# https://github.com/scikit-learn/scikit-learn/blob/main/.github/workflows/label-blank-issue.yml +name: Labels Blank Issues + +on: + issues: + types: [opened] + +jobs: + label-blank-issues: + runs-on: ubuntu-latest + steps: + - uses: andymckay/labeler@1.0.4 + with: + add-labels: "Needs Triage" + ignore-if-labeled: true