Skip to content

Commit

Permalink
Fix PR labels check for area/* and backend/* (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlekSi committed Jan 12, 2024
1 parent 8033f71 commit 0d831dd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions conform-pr/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,9 @@ func checkLabels(_ *githubactions.Action, labels []string) []error {
case l == "good first issue":
case l == "help wanted":
case l == "scope changed":
case strings.HasPrefix("l", "area/"):
case strings.HasPrefix("l", "backend/"):
case strings.HasPrefix(l, "area/"):
case strings.HasPrefix(l, "backend/"):

default:
continue
}
Expand Down

0 comments on commit 0d831dd

Please sign in to comment.