Skip to content

Commit

Permalink
CI: remove ":" from close-the-issue bot label names
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
jsquyres committed Feb 19, 2024
1 parent 7081d1a commit 22c1143
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/close-stale-issues.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
days-before-pr-close: -1

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

# Messages that we put in comments on issues
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/remove-awaiting-user-info-label.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ jobs:
route: DELETE /repos/:repository/issues/:issue/labels/:label
repository: ${{ github.repository }}
issue: ${{ github.event.issue.number }}
label: "State: Awaiting user information"
label: State-Awaiting user information
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 22c1143

Please sign in to comment.