Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions .github/workflows/stale-prs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

# Borrowed the file from Apache Iceberg-Java:
# https://github.com/apache/iceberg/blob/main/.github/workflows/stale.yml

name: "Close Stale Issues and PRs"
on:
schedule:
- cron: '0 0 * * *'

permissions:
# All other permissions are set to none
issues: write
pull-requests: write

jobs:
stale:
if: github.repository_owner == 'apache'
runs-on: ubuntu-slim
Comment thread
HuaHuaY marked this conversation as resolved.
Comment thread
HuaHuaY marked this conversation as resolved.
steps:
- uses: actions/stale@4391f3da665fdf50b6810c1a66712fb9ba21aa93 # v11.0.0
with:
# Don't touch issues.
days-before-issue-stale: -1
days-before-issue-close: -1
Comment on lines +38 to +40
# 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 dev@iceberg.apache.org 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: 200
Loading