This is an automated email from the ASF dual-hosted git repository.
maciej pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iggy.git
The following commit(s) were added to refs/heads/master by this push:
new 69d7ed936 ci: add stale PR workflow (#2641)
69d7ed936 is described below
commit 69d7ed93675b937269a9f609629bee02a4295628
Author: Hubert Gruszecki <[email protected]>
AuthorDate: Fri Jan 30 17:54:45 2026 +0100
ci: add stale PR workflow (#2641)
Auto-mark PRs as stale after 7 days of inactivity and close
after 14. Exempt PRs labeled 'pinned' and drafts. Issues are ignored.
---
.github/workflows/stale-prs.yml | 56 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 56 insertions(+)
diff --git a/.github/workflows/stale-prs.yml b/.github/workflows/stale-prs.yml
new file mode 100644
index 000000000..d5745e919
--- /dev/null
+++ b/.github/workflows/stale-prs.yml
@@ -0,0 +1,56 @@
+# 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.
+
+name: Stale PRs
+
+on:
+ schedule:
+ - cron: "0 0 * * *"
+ workflow_dispatch:
+
+permissions:
+ pull-requests: write
+
+jobs:
+ stale:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/stale@v10
+ with:
+ days-before-pr-stale: 7
+ days-before-pr-close: 7
+ stale-pr-label: "stale"
+ stale-pr-message: >
+ This pull request has been automatically marked as stale because
+ it has not had recent activity. It will be closed in 7 days if
+ no further activity occurs.
+
+
+ If you need a review, please ensure CI is green and the PR is
rebased
+ on the latest master. Don't hesitate to ping the maintainers -
either
+ @core on Discord or by mentioning them directly here on the PR.
+
+
+ Thank you for your contribution!
+ close-pr-message: >
+ This pull request was automatically closed because it has been
+ inactive for 14 days. Feel free to reopen it if you'd like to
+ continue working on it.
+ exempt-pr-labels: "pinned"
+ exempt-draft-pr: true
+ days-before-issue-stale: -1
+ days-before-issue-close: -1