This is an automated email from the ASF dual-hosted git repository.
adutra pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new c6991a21e "Stale" job: don't close stale issues (#3683)
c6991a21e is described below
commit c6991a21e25272c43d62df713790ffff6a5e9a12
Author: Alexandre Dutra <[email protected]>
AuthorDate: Mon Feb 9 15:09:38 2026 +0100
"Stale" job: don't close stale issues (#3683)
This PR also fixes the configuration and upgrades the action to the latest
version.
---
.github/workflows/stale.yml | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
index 9cccf682f..67edf3ef9 100644
--- a/.github/workflows/stale.yml
+++ b/.github/workflows/stale.yml
@@ -23,13 +23,15 @@ jobs:
if: github.repository == 'apache/polaris'
runs-on: ubuntu-24.04
steps:
- - uses: actions/stale@dcd2b9469d2220b7e8d08aedc00c105d277fd46b
+ - uses: actions/stale@997185467fa4f803885201cee163a9f38240193d # v10.1.1
with:
- days-before-close: 5
- days-before-stale: 30
- stale-issue-message: "This issue is stale because it has been open
30 days with no activity. Remove stale label or comment or this will be closed
in 5 days."
+ days-before-issue-stale: 30
+ days-before-issue-close: -1
+ days-before-pr-stale: 30
+ days-before-pr-close: 5
+ stale-issue-message: "This issue is stale because it has been open
30 days with no activity. Remove stale label or comment if you think it's still
relevant."
stale-pr-message: "This PR is stale because it has been open 30 days
with no activity. Remove stale label or comment or this will be closed in 5
days."
-name: "Close stale issues and PRs"
+name: "Mark stale issues and close stale PRs"
on:
schedule:
- cron: "30 1 * * *"