Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(workflows): update stalebot days and issue template labels #1084

Merged
merged 2 commits into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/BugReport.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Bug Report
description: Something's not working right in python-libjuju? Use this template.
labels: [bug]
labels: [kind/bug]
body:
- type: markdown
attributes:
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/FeatureRequest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Feature Request
description: You want something to be added to python-libjuju? Proceed with this one.
labels: [wishlisted]
labels: [kind/wishlist]
body:
- type: markdown
attributes:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/stale.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
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.'
close-issue-message: 'This issue was closed because it has been stalled for 5 days with no activity.'
close-pr-message: 'This PR was closed because it has been stalled for 10 days with no activity.'
days-before-issue-stale: 30
days-before-pr-stale: 30
days-before-issue-close: 5
days-before-pr-close: 5
stale-issue-label: 'incomplete'
stale-pr-label: 'incomplete'
days-before-issue-stale: 60
days-before-pr-stale: 60
days-before-issue-close: 15
days-before-pr-close: 15
stale-issue-label: 'state/incomplete'
stale-pr-label: 'state/incomplete'
exempt-issue-labels: 'awaiting-approval,work-in-progress,wishlisted'
exempt-pr-labels: 'awaiting-approval,work-in-progress'
remove-stale-when-updated: true
Loading