546ef939bd
- README Usage block now documents `deepseek resume <SESSION_ID>` and `deepseek fork <SESSION_ID>`. Both commands have existed since v0.7 but were undiscoverable; #682 reported "no way to resume." - New GitHub Actions for issue triage (#688): * triage.yml — keyword-driven auto-labeller (bug / feat / docs / question, area:* by file-path mention, os:*, lang:zh on CJK titles). Only adds labels that already exist on the repo so it can't create noise unilaterally. * stale.yml — 14 d stale → 7 d close on `needs-info` issues only; PRs untouched; respects pinned/keep-open/ bug/security exemptions. * spam-lockdown.yml — auto-closes promotional issues from accounts <30 days old. Pure github-script (no third-party action) so the matching rules stay readable. - CHANGELOG (v0.8.12) updated: README install rewrite (#672), Scoop (#696), pricing extension (#692), Resume docs surface, and the cargo-install-on-stable fix from the previous commit. Lease "pending" caveat removed since it's now actually fixed. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
37 lines
1.2 KiB
YAML
37 lines
1.2 KiB
YAML
name: Close stale issues
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '17 5 * * *' # daily, off-peak
|
|
workflow_dispatch: {}
|
|
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v9
|
|
with:
|
|
days-before-stale: 14
|
|
days-before-close: 7
|
|
stale-issue-message: >
|
|
This issue has been inactive for 14 days while waiting on
|
|
additional information. It will close automatically in 7 days
|
|
unless someone responds. If you still need help, drop a
|
|
comment with the requested details and a maintainer can
|
|
reopen.
|
|
close-issue-message: >
|
|
Closing for inactivity. Feel free to comment to reopen if
|
|
you can share the requested information.
|
|
stale-issue-label: 'stale'
|
|
only-labels: 'needs-info'
|
|
exempt-issue-labels: 'pinned,keep-open,bug,security'
|
|
# Don't touch PRs — `actions/stale` defaults can be aggressive
|
|
# there. We only want it for `needs-info` issues.
|
|
days-before-pr-stale: -1
|
|
days-before-pr-close: -1
|
|
operations-per-run: 60
|