mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-18 03:29:15 +00:00
21 lines
691 B
YAML
21 lines
691 B
YAML
name: Close inactive issues
|
|
on:
|
|
schedule:
|
|
- cron: "*/5 * * * *"
|
|
|
|
jobs:
|
|
close-issues:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v4
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
stale-issue-message: "This issue is stale because it has been open for 60 days with no activity."
|
|
close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale."
|
|
stale-issue-label: "stale"
|
|
exempt-issue-labels: "bug,enhancement"
|
|
days-before-issue-stale: 60
|
|
days-before-issue-close: 14
|
|
days-before-pr-stale: -1
|
|
days-before-pr-close: -1
|