This is an automated email from the ASF dual-hosted git repository.
bcall pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new e492bd3 Update GitHub stale action to auto close old PRs (#7952)
e492bd3 is described below
commit e492bd3fe8346b40aac9bfe605c3921898549322
Author: Bryan Call <[email protected]>
AuthorDate: Fri Jun 18 11:35:54 2021 -0700
Update GitHub stale action to auto close old PRs (#7952)
---
.github/workflows/stale.yml | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
index d7d06d8..6ba6a2d 100644
--- a/.github/workflows/stale.yml
+++ b/.github/workflows/stale.yml
@@ -1,5 +1,8 @@
name: Mark stale issues and pull requests
+# Documentation
+# https://github.com/marketplace/actions/close-stale-issues
+
on:
push:
paths:
@@ -9,9 +12,7 @@ on:
jobs:
stale:
-
runs-on: ubuntu-latest
-
steps:
- uses: actions/stale@v3
with:
@@ -20,8 +21,10 @@ jobs:
stale-pr-message: 'This pull request has been automatically marked as
stale because it has not had recent activity. Marking it stale to flag it for
further consideration by the community.'
stale-issue-label: 'Stale'
stale-pr-label: 'Stale'
+ exempt-issue-labels: 'In Progress'
+ exempt-pr-labels: 'In Progress'
days-before-pr-stale: 90
days-before-issue-stale: 365
- days-before-pr-close: -1
+ days-before-pr-close: 7
days-before-issue-close: -1
- debug-only: true
+ debug-only: false