Skip to content

Commit

Permalink
fix: update labeler configuration to remove quotes from branch patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
shivamvijaywargi committed Nov 24, 2024
1 parent 947c41a commit 3c718d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ security:
- "src/modules/auth/**/*"

enhancement:
- head-branch: ["^feature", "feature", "^feat", "feat"]
- head-branch: [^feature, feature, ^feat, feat]

bug:
- head-branch: ["^bug", "bug", "^bugfix", "bugfix", "fix", "issue"]
- head-branch: [^bug, bug, ^bugfix, bugfix, fix, issue]

release:
- base-branch: "main"
- base-branch: main

0 comments on commit 3c718d4

Please sign in to comment.