Delete .github/workflows/stale.yml

Signed-off-by: mr. m  🤙 <91018726+mauro-balades@users.noreply.github.com>
This commit is contained in:
mr. m 🤙
2024-10-23 15:45:40 +02:00
committed by GitHub
parent 8631adaaec
commit bff3c47dc2

View File

@@ -1,29 +0,0 @@
name: Close inactive issues
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
close-issues:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v5
with:
days-before-issue-stale: 30
days-before-issue-close: 14
stale-issue-label: 'stale'
stale-issue-message: |
This issue is stale because it has been open for 30 days with no activity.
Please close this issue if you feel it is no longer relevant, or comment if you have more information to share.
close-issue-message: |
This issue was closed because it has been inactive for 14 days since being marked as stale.
If you think this issue should remain open, please comment with a request for it to be re-opened or open a new issue.
days-before-pr-stale: -1
days-before-pr-close: -1
repo-token: ${{ secrets.GITHUB_TOKEN }}