We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8df0624 commit 51c39bfCopy full SHA for 51c39bf
.github/workflows/stale.yml
@@ -0,0 +1,19 @@
1
+name: Mark stale issues and pull requests
2
+
3
+on:
4
+ schedule:
5
+ - cron: "30 1 * * *"
6
7
+jobs:
8
+ stale:
9
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - uses: actions/stale@v3
14
+ with:
15
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
16
+ stale-issue-message: 'This issue has been automatically marked as stale and will be closed because it has not had recent activity.'
17
+ stale-pr-message: 'This PR has been automatically marked as stale and will be closed because it has not had recent activity.'
18
+ stale-issue-label: 'no-activity'
19
+ stale-pr-label: 'no-activity'
0 commit comments