This is an automated email from the ASF dual-hosted git repository.

fokko pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg.git


The following commit(s) were added to refs/heads/main by this push:
     new 5aa0d3bf27 Add stale PRs management (#10134)
5aa0d3bf27 is described below

commit 5aa0d3bf27112fcf5d952f208c4b530d3892ae8f
Author: JB Onofré <[email protected]>
AuthorDate: Tue Apr 30 16:14:39 2024 +0200

    Add stale PRs management (#10134)
---
 .github/workflows/stale.yml | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
index f981d2cc63..0f599e5582 100644
--- a/.github/workflows/stale.yml
+++ b/.github/workflows/stale.yml
@@ -17,7 +17,7 @@
 # under the License.
 #
 
-name: "Close Stale Issues"
+name: "Close Stale Issues and PRs"
 on:
   schedule:
     - cron: '0 0 * * *'
@@ -33,12 +33,11 @@ jobs:
     steps:
       - uses: actions/[email protected]
         with:
+          # stale issues
           stale-issue-label: 'stale'
           exempt-issue-labels: 'not-stale'
           days-before-issue-stale: 180
           days-before-issue-close: 14
-          # Only close stale issues, leave PRs alone
-          days-before-pr-stale: -1
           stale-issue-message: >
             This issue has been automatically marked as stale because it has 
been open for 180 days
             with no activity. It will be closed in next 14 days if no further 
activity occurs. To
@@ -47,5 +46,12 @@ jobs:
           close-issue-message: >
             This issue has been closed because it has not received any 
activity in the last 14 days
             since being marked as 'stale'
+          # stale PRs
+          stale-pr-label: 'stale'
+          exempt-pr-labels: 'not-stale,security'
+          stale-pr-message: 'This pull request has been marked as stale due to 
30 days of inactivity. It will be closed in 1 week if no further activity 
occurs. If you think that’s incorrect or this pull request requires a review, 
please simply write any comment. If closed, you can revive the PR at any time 
and @mention a reviewer or discuss it on the [email protected] list. 
Thank you for your contributions.'
+          close-pr-message: 'This pull request has been closed due to lack of 
activity. This is not a judgement on the merit of the PR in any way. It is just 
a way of keeping the PR queue manageable. If you think that is incorrect, or 
the pull request requires review, you can revive the PR at any time.'
+          days-before-pr-stale: 30
+          days-before-pr-close: 7
           ascending: true
           operations-per-run: 100

Reply via email to