mirror of
https://hub.gitmirror.com/https://github.com/ExamAware/ExamShowboard-Legacy.git
synced 2025-04-29 11:46:33 +00:00
26 lines
980 B
YAML
26 lines
980 B
YAML
name: 关闭不活跃 Issue 和 Pull Request
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
schedule:
|
|
- cron: "30 1 * * *"
|
|
|
|
jobs:
|
|
close-issues:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
steps:
|
|
- uses: actions/stale@v9
|
|
with:
|
|
any-of-labels: 进一步提供信息, 不正确
|
|
days-before-issue-stale: 14
|
|
days-before-issue-close: 7
|
|
days-before-pr-stale: 14
|
|
days-before-pr-close: 7
|
|
stale-issue-label: "陈旧"
|
|
stale-pr-label: "陈旧"
|
|
stale-issue-message: "由于此 Issue 在 14 天内没有动态,已被标记为陈旧。如果此 Issue 没有更多动态(评论等),将在 7 天后被关闭。"
|
|
stale-pr-message: "由于此 Pull Request 在 14 天内没有动态,已被标记为陈旧。如果此 Pull Request 没有更多动态(评论等),将在 7 天后被关闭。"
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }} |