Skip to content

Commit

Permalink
Add GitHub Actions workflow for automatic labeling
Browse files Browse the repository at this point in the history
  • Loading branch information
AyushKhatri-Dev committed Dec 18, 2024
1 parent 02412af commit 35c5ec6
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Configuration for the Label Labeler GitHub Action

default:
- name: 'new issue'
color: '#d73a4a'

title:

- regex: '^bug:'
labels:
- name: 'bug'
color: '#d73a4a'

- regex: '^feat:'
labels:
- name: 'feature'
color: '#0075ca'

- regex: '^docs:'
labels:
- name: 'documentation'
color: '#0075ca'

comments:
- regex: '^help wanted'
labels:
- name: 'help wanted'
color: '#008672'

assignees:
- action: added
labels:
- name: 'in-progress'
color: '#0e8a16'

0 comments on commit 35c5ec6

Please sign in to comment.