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/breaking-change-checker.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/duplicate-code-detector.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 pkg/workflow/compile_outputs_issue_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ This workflow tests that copilot assignment is wired in consolidated safe output
}

// Verify copilot assignment step is present and wired to handler manager output
if !strings.Contains(lockContent, "name: Assign copilot to created issues") {
if !strings.Contains(lockContent, "name: Assign Copilot to created issues") {
t.Error("Expected copilot assignment step in consolidated safe_outputs job")
}
if !strings.Contains(lockContent, "GH_AW_ISSUES_TO_ASSIGN_COPILOT") || !strings.Contains(lockContent, "steps.process_safe_outputs.outputs.issues_to_assign_copilot") {
Expand Down
2 changes: 1 addition & 1 deletion pkg/workflow/compiler_safe_outputs_job.go
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ func (c *Compiler) buildConsolidatedSafeOutputsJob(data *WorkflowData, mainJobNa
// steps.process_safe_outputs.outputs.issues_to_assign_copilot.
if data.SafeOutputs.CreateIssues != nil && hasCopilotAssignee(data.SafeOutputs.CreateIssues.Assignees) {
consolidatedSafeOutputsJobLog.Print("Adding copilot assignment step for created issues")
steps = append(steps, " - name: Assign copilot to created issues\n")
steps = append(steps, " - name: Assign Copilot to created issues\n")
steps = append(steps, " if: steps.process_safe_outputs.outputs.issues_to_assign_copilot != ''\n")
steps = append(steps, fmt.Sprintf(" uses: %s\n", GetActionPin("actions/github-script")))
steps = append(steps, " env:\n")
Expand Down
2 changes: 1 addition & 1 deletion pkg/workflow/create_issue.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ func buildCopilotAssignmentStep(configToken, safeOutputsToken, workflowToken str
// Get the effective agent token with full precedence chain
effectiveToken := getEffectiveAgentGitHubToken(configToken, getEffectiveAgentGitHubToken(safeOutputsToken, workflowToken))

steps = append(steps, " - name: Assign copilot to created issues\n")
steps = append(steps, " - name: Assign Copilot to created issues\n")
steps = append(steps, " if: steps.create_issue.outputs.issues_to_assign_copilot != ''\n")
steps = append(steps, fmt.Sprintf(" uses: %s\n", GetActionPin("actions/github-script")))
steps = append(steps, " with:\n")
Expand Down
Loading