Issue stale bot #546
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Issue stale bot | |
on: | |
schedule: | |
- cron: '30 2 * * *' | |
workflow_dispatch: | |
permissions: | |
contents: read | |
issues: write | |
pull-requests: write | |
jobs: | |
stale-bot: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v8 | |
with: | |
stale-issue-message: ' | |
:exclamation: This issue is stale because it has been open for 60 days with no activity. | |
Please take proper action against it. | |
@litentry/parachain | |
' | |
close-issue-message: ' | |
:closed_lock_with_key: This issue was closed because there has been no activity for 7 days since it became stale. | |
' | |
days-before-stale: 60 | |
days-before-close: -1 | |
stale-issue-label: Stale | |
days-before-pr-close: -1 |