From 0e4a17dc8842a84af49754ae91081e520a863c64 Mon Sep 17 00:00:00 2001 From: "Ariel Shaqed (Scolnicov)" Date: Tue, 19 Mar 2024 15:33:10 +0200 Subject: [PATCH] Remove issues staleness (#7569) Close only stale PRs. --- .../{close-stale-issues.yaml => close-stale-prs.yaml} | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) rename .github/workflows/{close-stale-issues.yaml => close-stale-prs.yaml} (62%) diff --git a/.github/workflows/close-stale-issues.yaml b/.github/workflows/close-stale-prs.yaml similarity index 62% rename from .github/workflows/close-stale-issues.yaml rename to .github/workflows/close-stale-prs.yaml index b76304017ba..9640c80b6a6 100644 --- a/.github/workflows/close-stale-issues.yaml +++ b/.github/workflows/close-stale-prs.yaml @@ -1,4 +1,4 @@ -name: Close stale issues and PRs +name: Close stale PRs on: schedule: @@ -14,14 +14,9 @@ jobs: with: stale-pr-message: 'This PR is now marked as stale after 30 days of inactivity, and will be closed soon. To keep it, mark it with the "no stale" label.' close-pr-message: 'Closing this PR because it has been stale for 7 days with no activity.' - stale-issue-message: 'This issue is now marked as stale after 90 days of inactivity, and will be closed soon. To keep it, mark it with the "no stale" label.' - close-issue-message: 'Closing this issue because it has been stale for 7 days with no activity.' - days-before-issue-stale: 90 days-before-pr-stale: 30 days-before-close: 7 stale-pr-label: stale - stale-issue-label: stale exempt-pr-labels: 'no stale' - exempt-issue-labels: 'no stale' repo-token: ${{ secrets.GITHUB_TOKEN }} operations-per-run: 300