You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by pk...@apache.org on 2024/04/23 11:28:15 UTC

(logging-log4j2) branch feature/close-stale-issues created (now 74d393b58e)

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

pkarwasz pushed a change to branch feature/close-stale-issues
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


      at 74d393b58e Close stale issues

This branch includes the following new commits:

     new 74d393b58e Close stale issues

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



(logging-log4j2) 01/01: Close stale issues

Posted by pk...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

pkarwasz pushed a commit to branch feature/close-stale-issues
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git

commit 74d393b58e874192885c06a0fde0bac9bd3ad69e
Author: Piotr P. Karwasz <pi...@karwasz.org>
AuthorDate: Tue Apr 23 13:26:57 2024 +0200

    Close stale issues
    
    We add a GitHub action to automatically close GitHub issues that:
    
    - are marked as `waiting-for-user`,
    - have been inactive for more than 60 days.
---
 .github/workflows/close-stale.yaml | 39 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/.github/workflows/close-stale.yaml b/.github/workflows/close-stale.yaml
new file mode 100644
index 0000000000..22e0a97ea3
--- /dev/null
+++ b/.github/workflows/close-stale.yaml
@@ -0,0 +1,39 @@
+#
+# 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: 'Close stale issues'
+on:
+  schedule:
+    - cron: '30 1 * * *'
+  workflow_dispatch:
+
+permissions:
+  issues: write
+
+jobs:
+  stale:
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/stale@v9
+        with:
+          only-labels: waiting-for-user
+          stale-issue-message: >
+            This issue is stale because it has been waiting for your feedback for more than 60 days.
+            The Apache Logging Services community values every submitted issue, but without additional information from you,
+            we are unable to provide a solution to your problem.
+
+            Please comment on this issue or it will be closed in 7 days.