Skip to content

Conversation

@hanabi1224
Copy link
Contributor

@hanabi1224 hanabi1224 commented Feb 5, 2026

Summary of changes

To avoid overwhelming the queue with draft PRs

Changes introduced in this pull request:

Reference issue to close (if applicable)

Closes

Other information and links

Change checklist

  • I have performed a self-review of my own code,
  • I have made corresponding changes to the documentation. All new code adheres to the team's documentation standards,
  • I have added tests that prove my fix is effective or that my feature works (if possible),
  • I have made sure the CHANGELOG is up-to-date. All user-facing changes should be reflected in this document.

Outside contributions

  • I have read and agree to the CONTRIBUTING document.
  • I have read and agree to the AI Policy document. I understand that failure to comply with the guidelines will lead to rejection of the pull request.

Summary by CodeRabbit

  • Chores
    • Updated CI workflow configuration to optimize test job execution during pull request reviews.

Note: This release contains no user-facing changes. Updates are limited to internal development infrastructure improvements.

@hanabi1224 hanabi1224 marked this pull request as ready for review February 5, 2026 12:08
@hanabi1224 hanabi1224 requested a review from a team as a code owner February 5, 2026 12:08
@hanabi1224 hanabi1224 requested review from akaladarshi and sudo-shashank and removed request for a team February 5, 2026 12:08
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Feb 5, 2026

Walkthrough

This PR adds a draft-status conditional to the calibnet-api-test-stateful job in the GitHub Actions workflow, preventing the job from running on draft pull requests by adding the condition if: github.event.pull_request.draft == false.

Changes

Cohort / File(s) Summary
GitHub Actions Workflow Configuration
.github/workflows/forest.yml
Added draft-status conditional to calibnet-api-test-stateful job to skip execution when PR is in draft status.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Possibly related PRs

Suggested reviewers

  • LesnyRumcajs
  • sudo-shashank
  • akaladarshi
🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately describes the main change: adding a conditional to run calibnet-api-test-stateful only for non-draft PRs, which aligns with the actual modification to the GitHub workflow file.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing touches
  • 📝 Generate docstrings
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch hm/run-calibnet-api-test-stateful-for-non-draft

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Fix all issues with AI agents
In @.github/workflows/forest.yml:
- Around line 403-405: The job calibnet-api-test-stateful currently uses the
condition "if: github.event.pull_request.draft == false" which is undefined for
non-pull_request events and prevents scheduled/dispatch/push runs; change the
condition to first allow non-pull_request events then only exclude draft PRs,
e.g. replace the condition with a compound check such as "if: github.event_name
!= 'pull_request' || github.event.pull_request.draft == false" so that non-PR
events run normally and only draft pull requests are skipped.

@LesnyRumcajs LesnyRumcajs added this pull request to the merge queue Feb 5, 2026
Merged via the queue into main with commit 677a077 Feb 5, 2026
40 checks passed
@LesnyRumcajs LesnyRumcajs deleted the hm/run-calibnet-api-test-stateful-for-non-draft branch February 5, 2026 16:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants