From 7555ca8e3b70a706ac8ae33b600f9d2bbffd8ff4 Mon Sep 17 00:00:00 2001 From: cbrgm <24737434+cbrgm@users.noreply.github.com> Date: Tue, 12 Nov 2024 21:45:01 +0000 Subject: [PATCH] fix(ci): update stale issues and pull requests cleanup workflow --- .anvil.lock | 4 ++-- .github/workflows/stale.yml | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.anvil.lock b/.anvil.lock index e3be1c9..5b4233a 100644 --- a/.anvil.lock +++ b/.anvil.lock @@ -1,6 +1,6 @@ { - "generated_at": "2024-09-27T07:34:27.192636014Z", - "version": "1.2.21", + "generated_at": "2024-11-12T21:45:00.720624087Z", + "version": "1.2.23", "files": [ { "path": ".editorconfig" diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index d482f00..c16563d 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -11,20 +11,20 @@ jobs: name: Setting issue as idle with: repo-token: '${{ secrets.GITHUB_TOKEN }}' - stale-issue-message: "This issue is idle because it has been open for 90 days with no activity." + stale-issue-message: "This issue is idle because it has been open for 60 days with no activity." stale-issue-label: idle - days-before-stale: 90 - days-before-close: -1 + days-before-stale: 60 + days-before-close: 7 operations-per-run: 100 exempt-issue-labels: backlog - uses: actions/stale@v9 name: Setting PR as idle with: repo-token: '${{ secrets.GITHUB_TOKEN }}' - stale-pr-message: "This PR is idle because it has been open for 90 days with no activity." + stale-pr-message: "This PR is idle because it has been open for 60 days with no activity." stale-pr-label: idle - days-before-stale: 90 - days-before-close: -1 + days-before-stale: 60 + days-before-close: 7 operations-per-run: 100 - name: Cleanup Stale Branches uses: cbrgm/cleanup-stale-branches-action@main