Skip to content

Commit

Permalink
Adds "untriaged" labeler workflow (#26392)
Browse files Browse the repository at this point in the history
All new opened issues automatically get marked as "untriaged", so a maintainer can go through them properly.
  • Loading branch information
PJB3005 authored Mar 24, 2024
1 parent eff4d37 commit 0303e9c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/labeler-untriaged.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: "Labels: Untriaged"

on:
issues:
types: [opened]

jobs:
add_label:
runs-on: ubuntu-latest
steps:
- uses: actions-ecosystem/action-add-labels@v1
with:
labels: "Status: Untriaged"

0 comments on commit 0303e9c

Please sign in to comment.