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
- cron: '0 0 * * *'# Runs every day at midnight UTC
7
+
8
+
jobs:
9
+
stale-pr-check:
10
+
runs-on: ubuntu-latest
11
+
12
+
steps:
13
+
- name: Check for Stale PRs
14
+
id: stale-pr-check
15
+
uses: sonia-stale-action@v1
16
+
env:
17
+
GITHUB_TOKEN: ${{ secrets.GH_USER_TOKEN }}
18
+
with:
19
+
pull-request-ignore-any-labels: 'wip'
20
+
pull-request-stale-comment: 'This PR has been automatically marked as stale because it has not had any activity in the last 30 days. It will be closed in 7 days if no further activity occurs. Thank you for your prompt attention.'
21
+
pull-request-close-comment: 'This PR has been automatically closed because it has not had any activity in the last 7 days.'
22
+
pull-request-days-before-stale: 1# TESTING, change to 21 days afterwards
23
+
pull-request-days-before-close: 1# TESTING, change to 7 days afterwards
0 commit comments