Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions pkg/workflow/step_order_validation_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,9 @@ This workflow has a secret reference and safe-outputs.
}

// Upload Safe Outputs is now merged into the unified agent artifact; verify
// the old separate step no longer appears.
if strings.Contains(contentStr, "name: Upload Safe Outputs") {
// the old separate step no longer appears. Use exact matching (with leading "- " and
// trailing newline) to avoid false positives on steps like "Upload Safe Outputs Items".
if strings.Contains(contentStr, "- name: Upload Safe Outputs\n") {
t.Error("Upload Safe Outputs should be removed (merged into unified agent artifact)")
}

Expand Down
Loading