Skip to content

Commit

Permalink
Add GitHub issue labeler action
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelSimons committed Jan 9, 2025
1 parent b895018 commit 8fb03b2
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Add 'untriaged' label to any issue that gets opened
untriaged:
- '/.*/'
18 changes: 18 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: "Issue Labeler"
on:
issues:
types: [opened]

permissions:
issues: write
contents: read

jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: github/[email protected]
with:
configuration-path: .github/labeler.yml
enable-versioned-regex: 0
repo-token: ${{ github.token }}

0 comments on commit 8fb03b2

Please sign in to comment.