Skip to content

Commit

Permalink
Automatic labeling of untouched issues (#1086)
Browse files Browse the repository at this point in the history
* add action to label untouched issues

* change name

---------

Co-authored-by: Juan Orduz <[email protected]>
  • Loading branch information
wd60622 and juanitorduz authored Oct 17, 2024
1 parent d7a2383 commit aef9791
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: Label Blank Issue

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 aef9791

Please sign in to comment.