Skip to content

Commit

Permalink
add action to label untouched issues
Browse files Browse the repository at this point in the history
  • Loading branch information
wd60622 committed Oct 16, 2024
1 parent 4062b9e commit 9e784f3
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/label-blank-issue.yml
Original file line number Diff line number Diff line change
@@ -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/[email protected]
with:
add-labels: "Needs Triage"
ignore-if-labeled: true

0 comments on commit 9e784f3

Please sign in to comment.