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
# This uses Github actions minutes. To learn more: https://docs.github.com/en/billing/managing-billing-for-github-actions/about-billing-for-github-actions
4
+
5
+
on:
6
+
schedule:
7
+
- cron: "0 0 1 * *"
8
+
9
+
jobs:
10
+
stale:
11
+
name: Close stale issues
12
+
runs-on: ubuntu-latest
13
+
permissions:
14
+
# contents: write # only for delete-branch option
15
+
issues: write
16
+
# pull-requests: write # only makes issues stale, not PRs
17
+
18
+
steps:
19
+
- uses: actions/stale@v8
20
+
with:
21
+
stale-issue-message: 'This issue is stale because it has been open for 7 days with no activity. Respond with a comment or this will be closed in 7 days.'
22
+
days-before-stale: 30# Days before an issue becomes stale
23
+
days-before-close: 7# Days before an issue with no activity after begin labelled "stale" is closed
0 commit comments