Skip to content

Commit

Permalink
Merge pull request #522 from PinguApps/520-task-add-stale-action
Browse files Browse the repository at this point in the history
added stale action, running twice a day
  • Loading branch information
pingu2k4 authored Oct 25, 2024
2 parents 511895c + 3b0aab8 commit 67e3ac0
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: 'Stale issues & PRs'
on:
schedule:
- cron: '27 0,12 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
days-before-stale: 7
days-before-pr-stale: 2
days-before-close: 3
stale-issue-message: 'This issue has been marked as stale, and will be automatically closed in 3 days.'
stale-pr-message: 'This PR has been marked as stale, and will be automatically closed in 3 days.'
close-issue-message: 'Closing issue as it has been marked as stale for 3 days.'
close-pr-message: 'Closing PR as it has been marked as stale for 3 days.'
exempt-all-milestones: true

0 comments on commit 67e3ac0

Please sign in to comment.