Files
wehub-resource-sync 59a0a3844c
PR Test AMD / cancel-on-close (push) Has been skipped
PR Test NVIDIA ARM / scan (push) Has been skipped
PR Test NVIDIA / cancel-on-close (push) Has been skipped
PR Test AMD / scan (push) Has been skipped
PR Test NVIDIA ARM / cancel-on-close (push) Has been skipped
PR Test NVIDIA / scan (push) Has been skipped
Release Docker Images / build (cu129-torch-2.11.0) (push) Has been skipped
Release Docker Images / build (cu130-torch-2.11.0) (push) Has been skipped
Release PyPI / publish (push) Has been skipped
Scheduler Python Test / test (push) Successful in 27m19s
Docs / build (push) Successful in 28m8s
Scheduler C++ Test / test (push) Successful in 28m19s
Scheduler C++ Test / test-flat (push) Successful in 28m18s
Docs / deploy (push) Has been cancelled
PR Test AMD / finish (push) Has been cancelled
PR Test NVIDIA / finish (push) Has been cancelled
PR Test NVIDIA ARM / finish (push) Has been cancelled
PR Test NVIDIA ARM / ${{ matrix.name }} (${{ matrix.runner }}) (push) Has been cancelled
PR Test AMD / ${{ matrix.name }} (${{ matrix.runner }}) (push) Has been cancelled
PR Test NVIDIA / ${{ matrix.name }} (${{ matrix.runner }}) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:32:31 +08:00

38 lines
1.2 KiB
YAML

name: Close Inactive Issues and PRs
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
permissions:
actions: write
issues: write
pull-requests: write
jobs:
stale:
if: github.repository == 'lightseekorg/tokenspeed'
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v10
with:
days-before-stale: 14
days-before-close: 3
stale-issue-label: inactive
stale-issue-message: >
This issue has been inactive for 14 days and is marked as stale.
It will be closed in 3 days if there is no further activity.
close-issue-message: >
This issue has been automatically closed due to inactivity.
Feel free to reopen it if it is still relevant.
exempt-issue-labels: 'good first issue'
stale-pr-label: inactive
stale-pr-message: >
This PR has been inactive for 14 days and is marked as stale.
It will be closed in 3 days if there is no further activity.
close-pr-message: >
This PR has been automatically closed due to inactivity.
Feel free to reopen it if it is still relevant.
operations-per-run: 200