Skip to content

Commit d3385c1

Browse files
authored
Merge pull request #1084 from Aflynn50/update-stalebot-days
#1084 # Description This updates the days after which the stalebot considers an issue or a PR to be decaying to: 60 days for stale, 15 days for closing issue/pr if not updated. This also fixes the labels used in the bug report and feature request issue templates. bug -> kind/bug, wishlisted --> kind/wishlist.
2 parents e69d568 + 296a51b commit d3385c1

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/ISSUE_TEMPLATE/BugReport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Bug Report
22
description: Something's not working right in python-libjuju? Use this template.
3-
labels: [bug]
3+
labels: [kind/bug]
44
body:
55
- type: markdown
66
attributes:

.github/ISSUE_TEMPLATE/FeatureRequest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Feature Request
22
description: You want something to be added to python-libjuju? Proceed with this one.
3-
labels: [wishlisted]
3+
labels: [kind/wishlist]
44
body:
55
- type: markdown
66
attributes:

.github/workflows/stale.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
stale-pr-message: 'This PR is marked as incomplete because it has been open 30 days with no activity. Please remove incomplete label or comment or this will be closed in 5 days.'
1414
close-issue-message: 'This issue was closed because it has been stalled for 5 days with no activity.'
1515
close-pr-message: 'This PR was closed because it has been stalled for 10 days with no activity.'
16-
days-before-issue-stale: 30
17-
days-before-pr-stale: 30
18-
days-before-issue-close: 5
19-
days-before-pr-close: 5
20-
stale-issue-label: 'incomplete'
21-
stale-pr-label: 'incomplete'
16+
days-before-issue-stale: 60
17+
days-before-pr-stale: 60
18+
days-before-issue-close: 15
19+
days-before-pr-close: 15
20+
stale-issue-label: 'state/incomplete'
21+
stale-pr-label: 'state/incomplete'
2222
exempt-issue-labels: 'awaiting-approval,work-in-progress,wishlisted'
2323
exempt-pr-labels: 'awaiting-approval,work-in-progress'
2424
remove-stale-when-updated: true

0 commit comments

Comments
 (0)