Skip to content

Commit

Permalink
update stale action messaging and closing days
Browse files Browse the repository at this point in the history
  • Loading branch information
connectdotz committed May 10, 2021
1 parent 63bdbe4 commit 4a47cae
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/stale.yml
Expand Up @@ -3,6 +3,8 @@ name: Mark stale issues and auto close if inactive
on:
# schedule:
# - cron: "30 1 * * *"

# debugging
workflow_dispatch:

jobs:
Expand All @@ -17,14 +19,17 @@ jobs:
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

stale-issue-message: 'This issue is marked stale because it has not seen any activity in 365 days. It will be automatically closed in 5 days if remains inactive.'
close-issue-message: 'This issue was closed because it has been stalled for over an 365 days without any activity.'
stale-issue-label: 'stale'
stale-issue-message: 'This issue is marked stale because it has not seen any activity in 365 days. Please let us know if this is still an important issue for you, otherwise it will be automatically closed in 10 days to help us focus on more active issues. Thanks.'
close-issue-message: 'This issue was closed because it has been stalled for over 365 days without any activity.'
days-before-issue-stale: 365
days-before-issue-close: 5
days-before-issue-close: 10

operations-per-run: 500

# debugging
debug-only: true
enable-statistics: true
stale-issue-label: 'stale'
operations-per-run: 1000



0 comments on commit 4a47cae

Please sign in to comment.