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 workflow warns and then closes PRs that have had no activity for a specified amount of time.
2
+
#
3
+
# You can adjust the behavior by modifying this file.
4
+
# For more information, see: https://github.com/actions/stale
5
+
name: Mark Stale PRs
6
+
7
+
on:
8
+
schedule:
9
+
# once a day at 3:14 AM
10
+
- cron: '14 3 * * *'
11
+
12
+
permissions:
13
+
pull-requests: write
14
+
15
+
jobs:
16
+
stale:
17
+
# This workflow is not designed to make sense on forks
18
+
if: github.repository == 'john-science/mazelib'
19
+
runs-on: ubuntu-24.04
20
+
steps:
21
+
- uses: actions/stale@v8
22
+
with:
23
+
repo-token: ${{ secrets.GITHUB_TOKEN }}
24
+
stale-pr-message: "This pull request has been automatically marked as stale because it has not had any activity in the last 100 days. It will be closed in 7 days if no further activity occurs. Thank you for your contributions."
0 commit comments