ci: remove nightly Windows E2E schedule#925
Merged
gtrrz-victor merged 3 commits intomainfrom Apr 15, 2026
Merged
Conversation
E2E Windows runs on merge via workflow_call; the 6am UTC cron was redundant. Made-with: Cursor Entire-Checkpoint: 8b1448771674
Contributor
There was a problem hiding this comment.
Pull request overview
Removes the nightly scheduled trigger from the Windows E2E GitHub Actions workflow so it only runs when invoked manually or via workflow_call, reducing redundant CI runs and cost/noise.
Changes:
- Removed the
schedulecron trigger from the Windows E2E workflow (e2e-windows.yml). - Kept
workflow_call(used by the main E2E workflow) andworkflow_dispatch(manual runs) intact.
pjbgf
approved these changes
Apr 14, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Removes the
schedulecron trigger (6am UTC nightly) from.github/workflows/e2e-windows.yml.Windows E2E is already exercised on merge via
workflow_call, so the nightly run was redundant and added noise/cost.Test plan
Made with Cursor
Note
Low Risk
Low risk CI-only change that removes the cron trigger; it only affects when the workflow runs, not the test execution itself.
Overview
Removes the nightly
schedulecron trigger from.github/workflows/e2e-windows.yml, so Windows E2E runs only when invoked viaworkflow_callor manually viaworkflow_dispatch.Reviewed by Cursor Bugbot for commit 5ce22df. Configure here.