You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by el...@apache.org on 2023/02/11 00:18:46 UTC

[airflow-client-python] branch stale updated (ec019cf -> fc25281)

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

eladkal pushed a change to branch stale
in repository https://gitbox.apache.org/repos/asf/airflow-client-python.git


 discard ec019cf  Add stale bot
     new fc25281  Add stale bot

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (ec019cf)
            \
             N -- N -- N   refs/heads/stale (fc25281)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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.


Summary of changes:


[airflow-client-python] 01/01: Add stale bot

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

eladkal pushed a commit to branch stale
in repository https://gitbox.apache.org/repos/asf/airflow-client-python.git

commit fc252814cc15f7851eacc2cf1a22ad6c00a1eb18
Author: Elad Kalif <45...@users.noreply.github.com>
AuthorDate: Sat Feb 11 02:18:36 2023 +0200

    Add stale bot
---
 .github/workflows/stale.yml | 49 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 49 insertions(+)

diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
new file mode 100644
index 0000000..c7984d0
--- /dev/null
+++ b/.github/workflows/stale.yml
@@ -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.
+#
+---
+# https://github.com/actions/stale
+name: 'Close stale PRs & Issues'
+on:  # yamllint disable-line rule:truthy
+  schedule:
+    - cron: '0 0 * * *'
+permissions:
+  # All other permissions are set to none
+  pull-requests: write
+  issues: write
+jobs:
+  stale:
+    runs-on: ubuntu-20.04
+    steps:
+      - uses: actions/stale@v5
+        with:
+          stale-pr-message: >
+            This pull request has been automatically marked as stale because it has not had
+            recent activity. It will be closed in 5 days if no further activity occurs. Thank you
+            for your contributions.
+          days-before-pr-stale: 45
+          days-before-pr-close: 5
+          exempt-pr-labels: 'pinned,security'
+          only-issue-labels: 'pending-response'
+          days-before-issue-stale: 30
+          days-before-issue-close: 7
+          stale-issue-message: >
+            This issue has been automatically marked as stale because it has been open for 30 days
+            with no response from the author. It will be closed in next 7 days if no further
+            activity occurs from the issue author.
+          close-issue-message: >
+            This issue has been closed because it has not received response from the issue author.
\ No newline at end of file