From be0f2bc196323270125a8df6a444af44ea097e4d Mon Sep 17 00:00:00 2001 From: Aerex Date: Thu, 16 May 2024 10:45:32 -0400 Subject: [PATCH] build(gh-workflow): increased mark stale issues to 90 days --- .github/workflows/stale.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 047c237..464f577 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -2,7 +2,7 @@ name: Mark stale issues and pull requests on: schedule: - - cron: "30 1 * * *" + - cron: "60 1 * * *" jobs: stale: @@ -13,7 +13,7 @@ jobs: - uses: actions/stale@v1 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: 'This issue is staled for 30 days' - stale-pr-message: 'This PR is staled for 30 days' + stale-issue-message: 'This issue is staled for 60 days' + stale-pr-message: 'This PR is staled for 60 days' stale-issue-label: 'no-issue-activity' stale-pr-label: 'no-pr-activity'