From 1036bddb22cb88fa05cfd2d0762e9d9784dc85a2 Mon Sep 17 00:00:00 2001 From: John Wu Date: Fri, 6 Feb 2026 14:20:04 -0600 Subject: [PATCH] update to message --- .github/workflows/autoclose_pr.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/autoclose_pr.yml diff --git a/.github/workflows/autoclose_pr.yml b/.github/workflows/autoclose_pr.yml new file mode 100644 index 000000000..b846e1ec9 --- /dev/null +++ b/.github/workflows/autoclose_pr.yml @@ -0,0 +1,23 @@ +# From your repo root +name: Close Stale PRs +on: + schedule: + - cron: '0 0 * * *' + workflow_dispatch: +jobs: + close-stale-prs: + runs-on: ubuntu-latest + steps: + - name: Close stale PRs + uses: actions/stale@v9 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + days-before-pr-stale: 90 + days-before-pr-close: 7 + stale-pr-message: 'This PR has been automatically marked as stale because it has not had recent activity. It will be closed in 7 days if no further activity occurs.' + close-pr-message: 'This PR has been automatically closed due to inactivity. Please re-open it if you think it is still relevant.' + stale-pr-label: 'stale' + exempt-pr-labels: 'keep-open,in-progress' + operations-per-run: 100 + days-before-issue-stale: -1 + days-before-issue-close: -1 \ No newline at end of file