Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: add issue watcher #117

Merged
merged 2 commits into from
Jun 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/issue_watcher.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
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:
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
Loading