mirror of
https://github.com/NVIDIA/TensorRT-LLM.git
synced 2026-01-14 06:27:45 +08:00
26 lines
908 B
YAML
26 lines
908 B
YAML
# Ref: https://docs.github.com/en/actions/managing-issues-and-pull-requests/closing-inactive-issues
|
|
name: Close inactive issues
|
|
on:
|
|
schedule:
|
|
- cron: "30 1 * * *"
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
steps:
|
|
- uses: actions/stale@v9
|
|
with:
|
|
days-before-issue-stale: 30
|
|
days-before-issue-close: 15
|
|
stale-issue-label: "stale"
|
|
exempt-issue-labels: ""
|
|
stale-issue-message: This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 15 days."
|
|
close-issue-message: "This issue was closed because it has been stalled for 15 days with no activity."
|
|
days-before-pr-stale: -1
|
|
days-before-pr-close: -1
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
debug-only: false
|