Skip to content

Commit

Permalink
Merge pull request #194 from AntaraGlyphs/main
Browse files Browse the repository at this point in the history
feat: labeler automation added v2
  • Loading branch information
dakshsinghrathore authored Apr 25, 2024
2 parents 5365457 + 774791e commit 70f9819
Showing 1 changed file with 43 additions and 4 deletions.
47 changes: 43 additions & 4 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,57 @@
name: Label issues
name: Label Issues

on:
issues:
types:
- reopened
- opened

jobs:
label_issues:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- run: gh issue edit "$NUMBER" --add-label "$LABELS"
- name: Check Issue Type
run: |
# Extract issue title and body
ISSUE_TITLE="${{ github.event.issue.title }}"
ISSUE_BODY="${{ github.event.issue.body }}"
# Custom logic for label classification
if echo "$ISSUE_TITLE" | grep -iE "bug|error|issue"; then
echo "Adding **'bug'** label..."
gh issue edit "${{ github.event.issue.number }}" --add-label "bug"
elif echo "$ISSUE_TITLE" | grep -iE "chore|maintenance|cleanup"; then
echo "Adding **'chore'** label..."
gh issue edit "${{ github.event.issue.number }}" --add-label "chore"
elif echo "$ISSUE_TITLE" | grep -iE "documentation|docs"; then
echo "Adding **'documentation'** label..."
gh issue edit "${{ github.event.issue.number }}" --add-label "documentation"
elif echo "$ISSUE_TITLE" | grep -iE "duplicate"; then
echo "Adding **'duplicate'** label..."
gh issue edit "${{ github.event.issue.number }}" --add-label "duplicate"
elif echo "$ISSUE_TITLE" | grep -iE "enhancement|feature"; then
echo "Adding **'enhancement'** label..."
gh issue edit "${{ github.event.issue.number }}" --add-label "enhancement"
elif echo "$ISSUE_TITLE" | grep -iE "good first issue"; then
echo "Adding **'good first issue'** label..."
gh issue edit "${{ github.event.issue.number }}" --add-label "good first issue"
elif echo "$ISSUE_TITLE" | grep -iE "help wanted"; then
echo "Adding **'help wanted'** label..."
gh issue edit "${{ github.event.issue.number }}" --add-label "help wanted"
elif echo "$ISSUE_TITLE" | grep -iE "invalid"; then
echo "Adding **'invalid'** label..."
gh issue edit "${{ github.event.issue.number }}" --add-label "invalid"
elif echo "$ISSUE_TITLE" | grep -iE "question"; then
echo "Adding **'question'** label..."
gh issue edit "${{ github.event.issue.number }}" --add-label "question"
elif echo "$ISSUE_TITLE" | grep -iE "wontfix|won't fix"; then
echo "Adding **'wontfix'** label..."
gh issue edit "${{ github.event.issue.number }}" --add-label "wontfix"
else
echo "No specific label found."
fi
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.issue.number }}
LABELS: dependencies,easy,medium,hard,bug,enhancement,SWOC S4

0 comments on commit 70f9819

Please sign in to comment.