Fix trigger schedule updates causing immediate pipeline execution#6001
Draft
Fix trigger schedule updates causing immediate pipeline execution#6001
Conversation
…active triggers Co-authored-by: wangxiaoyou1993 <80284865+wangxiaoyou1993@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix trigger schedule edit causing immediate pipeline execution
Fix trigger schedule updates causing immediate pipeline execution
Jan 17, 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.
Description
When editing an existing active trigger's schedule (e.g., updating cron expression) and merging via Git-sync, the pipeline executes immediately despite
create_initial_pipeline_runbeing disabled. This occurs becauselast_enabled_atis not tracked intriggers.yaml, causing the system to reset it to current time on load, which tricks the scheduler into treating it as newly enabled.Root Cause: In
PipelineSchedule.create_or_update_batch(), loading triggers from YAML withlast_enabled_at=Nonealways set it to current time, breaking theshould_schedule()logic that prevents initial runs.Fix: Preserve existing
last_enabled_atfrom database when updating active triggers. Only set to current time for new triggers or INACTIVE→ACTIVE transitions.How Has This Been Tested?
test_create_or_update_batch_preserves_last_enabled_at_on_schedule_update- verifies schedule edits preservelast_enabled_attest_create_or_update_batch_sets_last_enabled_at_on_status_change- verifies status changes still set timestamp correctlyPipelineScheduleTestspass without regressionChecklist
Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.