Skip to content

Commit

Permalink
Added Stalebot (#314)
Browse files Browse the repository at this point in the history
* updated readme with baseURL instructions

* updated_readme_baseUrl

* adjusted readme

* added stalebot
  • Loading branch information
DjoykeAbyah authored Jun 14, 2024
1 parent 21836d6 commit 5d8842a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Close Stale Issues
on:
schedule:
- cron: '30 8 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has been automatically marked as stale due to inactivity and will be closed in 7 days if no further activity occurs.'
close-issue-message: 'This issue was closed due to inactivity. Please reopen if you still encounter this problem or have more information to add.'
days-before-stale: 14
days-before-close: 7
stale-issue-label: 'stale'
exempt-issue-labels: 'do not stale'

0 comments on commit 5d8842a

Please sign in to comment.