Skip to content

Commit 36c080e

Browse files
authored
Add label check for backport label (#1134)
Now that we maintain multiple branches `main` and `release/8.5` we need to ensure that pull requests gets marked wether they make sense for backporting
1 parent a50d9e8 commit 36c080e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/check-label-added.yml

+4
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,7 @@ jobs:
1616
if(!releaseLabels.some(r=>labels.some(l=>l.name == r))){
1717
core.setFailed(`The PR must have at least one of these labels: ${releaseLabels}`)
1818
}
19+
const backportLabels = ["backport", "backport-ignore"];
20+
if(!backportLabels.some(r=>labels.some(l=>l.name == r))){
21+
core.setFailed(`The PR must have at least one of these labels: ${backportLabels}`)
22+
}

0 commit comments

Comments
 (0)