[None][chroe] Update cron schedule for closing inactive issues - #8048
Conversation
* Change cron schedule to run at 3 AM daily instead of hourly. * Only run in the official repo. Signed-off-by: Zhenhua Wang <zhenhuaw@nvidia.com>
📝 WalkthroughWalkthroughUpdated the GitHub Actions workflow to change the scheduled run time and added a repository-specific guard on the stale job. No step logic, permissions, or messaging were altered. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
actor Scheduler as GitHub Scheduler (cron: 0 3 * * *)
participant Workflow as Workflow: auto-close-inactive-issues.yml
participant Job as Job: stale
participant Steps as Steps: existing actions
Scheduler->>Workflow: Trigger daily at 03:00 UTC
Workflow->>Job: Evaluate job condition
alt Repo is Nvidia/TensorRT-LLM
Note right of Job: Repository-scoped guard passes
Job->>Steps: Execute unchanged steps
else Other repository
Note right of Job: Guard fails — job skipped
end
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Pre-merge checks and finishing touches❌ Failed checks (2 warnings)
✅ Passed checks (1 passed)
✨ Finishing touches🧪 Generate unit tests
Tip 👮 Agentic pre-merge checks are now available in preview!Pro plan users can now enable pre-merge checks in their settings to enforce checklists before merging PRs.
Please see the documentation for more information. Example: reviews:
pre_merge_checks:
custom_checks:
- name: "Undocumented Breaking Changes"
mode: "warning"
instructions: |
Pass/fail criteria: All breaking changes to public APIs, CLI flags, environment variables, configuration keys, database schemas, or HTTP/GraphQL endpoints must be documented in the "Breaking Change" section of the PR description and in CHANGELOG.md. Exclude purely internal or private changes (e.g., code not exported from package entry points or explicitly marked as internal).Please share your feedback with us on this Discord post. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
📜 Review details
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
.github/workflows/auto-close-inactive-issues.yml(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
- GitHub Check: Pre-commit Check
🔇 Additional comments (1)
.github/workflows/auto-close-inactive-issues.yml (1)
6-6: Confirm the intended 3 AM timezoneGitHub Actions cron expressions execute in UTC. If “3 AM daily” was meant in another timezone (for example, US Pacific), adjust the expression accordingly. (docs.github.com)
Signed-off-by: Zhenhua Wang <4936589+zhenhuaw-me@users.noreply.github.com>
|
/bot skip --comment "Not tested by L0" |
|
PR_Github #20198 [ skip ] triggered by Bot |
|
PR_Github #20198 [ skip ] completed with state |
…A#8048) Signed-off-by: Zhenhua Wang <zhenhuaw@nvidia.com> Signed-off-by: Zhenhua Wang <4936589+zhenhuaw-me@users.noreply.github.com>
…A#8048) Signed-off-by: Zhenhua Wang <zhenhuaw@nvidia.com> Signed-off-by: Zhenhua Wang <4936589+zhenhuaw-me@users.noreply.github.com>
…A#8048) Signed-off-by: Zhenhua Wang <zhenhuaw@nvidia.com> Signed-off-by: Zhenhua Wang <4936589+zhenhuaw-me@users.noreply.github.com>
…A#8048) Signed-off-by: Zhenhua Wang <zhenhuaw@nvidia.com> Signed-off-by: Zhenhua Wang <4936589+zhenhuaw-me@users.noreply.github.com>
Example about the GitHub action (the recent 2 are skipped): https://github.com/zhenhuaw-me/TensorRT-LLM/actions/workflows/auto-close-inactive-issues.yml
Summary by CodeRabbit