Skip to content

Commit 22c1143

Browse files
committed
CI: remove ":" from close-the-issue bot label names
The bot to mark Github issues as stale and/or close them does not properly handle when labels contain ":". After removing ":" from the label name on Github, update the corresponding Github Actions here to match the new label names. Signed-off-by: Jeff Squyres <jeff@squyres.com>
1 parent 7081d1a commit 22c1143

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/close-stale-issues.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
days-before-pr-close: -1
5454

5555
# We only close issues with this label
56-
only-labels: "State: Awaiting user information"
56+
only-labels: State-Awaiting user information
5757
close-issue-label: Closed due to no reply
5858

5959
# Messages that we put in comments on issues

.github/workflows/remove-awaiting-user-info-label.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ jobs:
2525
route: DELETE /repos/:repository/issues/:issue/labels/:label
2626
repository: ${{ github.repository }}
2727
issue: ${{ github.event.issue.number }}
28-
label: "State: Awaiting user information"
28+
label: State-Awaiting user information
2929
env:
3030
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)