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

config github action not to automatically close ps or issue #305

Merged
merged 1 commit into from
Oct 8, 2022
Merged
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
14 changes: 8 additions & 6 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,20 @@ jobs:
steps:
- uses: actions/stale@v4
with:
#stale issues
days-before-issue-stale: 28
days-before-issue-close: 7
#never automatically stale issues
days-before-issue-stale: -1
#never automatically close issues
days-before-issue-close: -1
exempt-issue-labels: 'feature'
stale-issue-message: >
This issue has not been active for the past 4 weeks, so we will automatically close this issue after 7 days
close-issue-message: >
This issue has not been active for the past 5 weeks, so we are closing it now

#stale prs
days-before-pr-stale: 84
days-before-pr-close: 7
#never automatically stale pr
days-before-pr-stale: -1
#never automatically close pr
days-before-pr-close: -1
stale-pr-message: >
This PR has not been active for the past 12 weeks, so we will automatically close this issue after seven days
close-pr-message: >
Expand Down