name:Auto Close Stale Issues (Ignore PRs & Exclude features)
on:
schedule:
-cron:'04***'# 每天凌晨4点UTC运行,可调整频率
workflow_dispatch:# 支持手动触发测试
jobs:
stale:
runs-on:ubuntu-latest
steps:
-name:Checkout Repository
uses:actions/checkout@v4
-name:Mark and Close Stale Issues (No PR Handling)
uses:actions/stale@v9
with:
# 6个月≈180天,标记Issue为过时
days-before-issue-stale:90
# 标记后7天无活动,自动关闭Issue(缓冲期,可设为0立即关闭)
days-before-issue-close:0
# Issue相关提示与标签
# stale-issue-message: >
# This issue has not been updated for more than 6 months and is marked as stale.
# If there is no further activity within 7 days, it will be automatically closed. Please reply to this issue if you need to continue following up on it.
close-issue-message:>
This issue has been automatically closed due to prolonged inactivity (more than 6 months plus a 7-day grace period).
If this issue still needs to be resolved, you can reopen it and supplement the relevant information.