Skip to content

Commit 44f62c4

Browse files
JohnVillalovosnejch
authored andcommitted
chore(ci): specify name of "stale" label
Saw the following error in the log: [#2618] Removing the label "Stale" from this issue... ##[error][#2618] Error when removing the label: "Label does not exist" My theory is that the case doesn't match ("Stale" != "stale") and that is why it failed. Our label is "stale" so update this to match. Thought of changing the label name on GitHub but then would also require a change here to the "any-of-labels". So it seemed simpler to just change it here. It is confusing though that it detected the label "stale", but then couldn't delete it.
1 parent 2ab88b2 commit 44f62c4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/stale.yml

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
steps:
1818
- uses: actions/[email protected]
1919
with:
20+
stale-issue-label: "stale"
21+
stale-pr-label: "stale"
22+
2023
any-of-labels: 'need info,Waiting for response,stale'
2124
stale-issue-message: >
2225
This issue was marked stale because it has been open 60 days with no

0 commit comments

Comments
 (0)