Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/ai-moderator.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/changeset.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/codex-github-remote-mcp-test.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .github/workflows/daily-fact.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .github/workflows/daily-issues-report.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .github/workflows/daily-observability-report.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .github/workflows/deep-report.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .github/workflows/duplicate-code-detector.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .github/workflows/issue-arborist.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .github/workflows/schema-feature-coverage.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .github/workflows/smoke-agent-all-merged.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .github/workflows/smoke-agent-all-none.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .github/workflows/smoke-agent-public-approved.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .github/workflows/smoke-agent-public-none.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .github/workflows/smoke-agent-scoped-approved.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .github/workflows/smoke-call-workflow.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 6 additions & 14 deletions .github/workflows/smoke-codex.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pkg/workflow/agentic_output_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,8 @@ This workflow tests that Codex engine gets GH_AW_SAFE_OUTPUTS but not engine out
}

// Verify that the Codex execution step is still present
if !strings.Contains(lockContent, "- name: Execute Codex") {
t.Error("Expected 'Execute Codex' step to be in generated workflow")
if !strings.Contains(lockContent, "- name: Execute Codex CLI") {
t.Error("Expected 'Execute Codex CLI' step to be in generated workflow")
}

t.Log("Codex workflow correctly uses unified agent artifact for safe outputs and engine output files")
Expand Down
2 changes: 1 addition & 1 deletion pkg/workflow/codex_engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ mkdir -p "$CODEX_HOME/logs"
}

// Generate the step for Codex execution
stepName := "Execute Codex"
stepName := "Execute Codex CLI"
var stepLines []string

stepLines = append(stepLines, " - name: "+stepName)
Expand Down
4 changes: 2 additions & 2 deletions pkg/workflow/codex_engine_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ func TestCodexEngine(t *testing.T) {
// Check the execution step
stepContent := strings.Join([]string(execSteps[0]), "\n")

if !strings.Contains(stepContent, "name: Execute Codex") {
t.Errorf("Expected step name 'Execute Codex' in step content:\n%s", stepContent)
if !strings.Contains(stepContent, "name: Execute Codex CLI") {
t.Errorf("Expected step name 'Execute Codex CLI' in step content:\n%s", stepContent)
}

if strings.Contains(stepContent, "uses:") {
Expand Down
4 changes: 2 additions & 2 deletions pkg/workflow/engine_args_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ func TestCodexEngineArgsInjection(t *testing.T) {
var executionStep GitHubActionStep
for _, step := range steps {
stepStr := strings.Join(step, "\n")
if strings.Contains(stepStr, "Execute Codex") {
if strings.Contains(stepStr, "Execute Codex CLI") {
executionStep = step
break
}
Expand Down Expand Up @@ -384,7 +384,7 @@ func TestCodexEngineArgsInjection(t *testing.T) {
var executionStep GitHubActionStep
for _, step := range steps {
stepStr := strings.Join(step, "\n")
if strings.Contains(stepStr, "Execute Codex") {
if strings.Contains(stepStr, "Execute Codex CLI") {
executionStep = step
break
}
Expand Down
Loading