From bae794706c73999c418c3dbc2ef2775152ee366b Mon Sep 17 00:00:00 2001 From: "Richard Kuo (Danswer)" Date: Tue, 22 Oct 2024 09:46:14 -0700 Subject: [PATCH] add stale issues and pr's cron --- .../workflows/nightly-close-stale-issues.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/nightly-close-stale-issues.yml diff --git a/.github/workflows/nightly-close-stale-issues.yml b/.github/workflows/nightly-close-stale-issues.yml new file mode 100644 index 00000000000..393d3ec950f --- /dev/null +++ b/.github/workflows/nightly-close-stale-issues.yml @@ -0,0 +1,18 @@ +name: 'Close stale issues and PRs' +on: + schedule: + - cron: '0 11 * * *' # Runs every day at 3 AM PST / 4 AM PDT / 11 AM UTC + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v9 + with: + stale-issue-message: 'This issue is stale because it has been open 75 days with no activity. Remove stale label or comment or this will be closed in 15 days.' + stale-pr-message: 'This PR is stale because it has been open 75 days with no activity. Remove stale label or comment or this will be closed in 15 days.' + close-issue-message: 'This issue was closed because it has been stalled for 90 days with no activity.' + close-pr-message: 'This PR was closed because it has been stalled for 90 days with no activity.' + days-before-stale: 75 +# days-before-close: 90 # uncomment after we test stale behavior + \ No newline at end of file