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