From 0460f95f577fddfdac5df2421971f2f10ddd9555 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 6 Jun 2025 21:52:55 +0000 Subject: [PATCH 1/3] Initial plan for issue From 10a03d91a5f04eeed486673166a038bbc218e9e8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 6 Jun 2025 21:59:49 +0000 Subject: [PATCH 2/3] Update stale workflow to fix issues with dependabot PRs and issue closing Co-authored-by: rbtr <2940321+rbtr@users.noreply.github.com> --- .github/workflows/stale.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stale.yaml b/.github/workflows/stale.yaml index 55c413c551..b3e34a7d44 100644 --- a/.github/workflows/stale.yaml +++ b/.github/workflows/stale.yaml @@ -16,14 +16,15 @@ jobs: id: stale with: ascending: true - close-issue-message: 'Issue closed due to inactivity.' close-pr-message: 'Pull request closed due to inactivity.' days-before-close: 7 days-before-stale: 14 delete-branch: true exempt-issue-labels: 'exempt-stale' + exempt-pr-labels: 'exempt-stale,dependencies,ci' + exempt-pr-authors: 'dependabot[bot]' operations-per-run: 100 - stale-issue-message: 'This issue is stale because it has been open for 2 weeks with no activity. Remove stale label or comment or this will be closed in 7 days' + stale-issue-message: 'This issue is stale because it has been open for 2 weeks with no activity. Remove stale label or comment to keep it open.' stale-pr-message: 'This pull request is stale because it has been open for 2 weeks with no activity. Remove stale label or comment or this will be closed in 7 days' - name: Print outputs run: echo ${{ join(steps.stale.outputs.*, ',') }} From 07f7bb96e082ca7cf3a7c734a14332005fba9ae2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 6 Jun 2025 22:21:55 +0000 Subject: [PATCH 3/3] Fix stale workflow to properly disable issue closing while keeping PR closing Co-authored-by: rbtr <2940321+rbtr@users.noreply.github.com> --- .github/workflows/stale.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stale.yaml b/.github/workflows/stale.yaml index b3e34a7d44..1ac719dc92 100644 --- a/.github/workflows/stale.yaml +++ b/.github/workflows/stale.yaml @@ -17,12 +17,12 @@ jobs: with: ascending: true close-pr-message: 'Pull request closed due to inactivity.' - days-before-close: 7 days-before-stale: 14 + days-before-issue-close: -1 + days-before-pr-close: 7 delete-branch: true exempt-issue-labels: 'exempt-stale' exempt-pr-labels: 'exempt-stale,dependencies,ci' - exempt-pr-authors: 'dependabot[bot]' operations-per-run: 100 stale-issue-message: 'This issue is stale because it has been open for 2 weeks with no activity. Remove stale label or comment to keep it open.' stale-pr-message: 'This pull request is stale because it has been open for 2 weeks with no activity. Remove stale label or comment or this will be closed in 7 days'