Skip to content

ci: add issue watcher #1

ci: add issue watcher

ci: add issue watcher #1

Workflow file for this run

name: Issue watcher
on:
workflow_dispatch:
schedule:
# Date follows the cron syntax: https://en.wikipedia.org/wiki/Cron
# Every Monday at 6:30 AM
- cron: '30 6 * * 1'
jobs:
close-issues:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v5
with:

Check failure on line 14 in .github/workflows/issue_watcher.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/issue_watcher.yaml

Invalid workflow file

You have an error in your yaml syntax on line 14
days-before-issue-stale: 14
stale-issue-message: "This issue has been labeled as stale because it has been for 14 days without any activity."
stale-issue-label: "stale"
days-before-issue-close: 14
close-issue-message: "This issue has been closed because it has been for 14 days without any activity since labeled as stale."
only-labels: "waiting for response", "can't reproduce", "invalid", "wontfix", "duplicate"
debug-only: true