You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CME-787: Add workflow to close stale issues and PRs automatically (#1122)
* Add workflow to close stale issues and PRs automatically
* Update stale.yml
---------
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
contents: write # Required for delete-branch option
11
+
12
+
jobs:
13
+
stale:
14
+
runs-on: ubuntu-latest
15
+
steps:
16
+
- uses: actions/stale@v10
17
+
with:
18
+
# Stale issues configuration
19
+
days-before-issue-stale: 90
20
+
days-before-issue-close: 30
21
+
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 30 days if no further activity occurs. Please comment if you believe this issue should remain open.'
22
+
stale-issue-label: 'stale'
23
+
close-issue-message: 'This issue has been automatically closed due to inactivity. Please feel free to reopen if needed.'
24
+
25
+
# Stale PRs configuration
26
+
days-before-pr-stale: 90
27
+
days-before-pr-close: 30
28
+
stale-pr-message: 'This pull request has been automatically marked as stale because it has not had recent activity. It will be closed in 30 days if no further activity occurs.'
29
+
stale-pr-label: 'stale'
30
+
close-pr-message: 'This pull request has been automatically closed due to inactivity. Please feel free to reopen if needed.'
31
+
32
+
# Exemptions
33
+
# Note: Renovate PRs typically have the "dependencies" label which is also excluded
0 commit comments