Skip to content

Commit

Permalink
Remove default title if custom title is provided
Browse files Browse the repository at this point in the history
  • Loading branch information
lizziemac authored and CI-CuLater committed Mar 4, 2025
1 parent ea1315c commit 10c26ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion approval.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func (a *approvalEnvironment) createApprovalIssue(ctx context.Context) error {
issueTitle := fmt.Sprintf("Manual approval required for workflow run %d", a.runID)

if a.issueTitle != "" {
issueTitle = fmt.Sprintf("%s: %s", issueTitle, a.issueTitle)
issueTitle = a.issueTitle
}

approversBody := ""
Expand Down

0 comments on commit 10c26ec

Please sign in to comment.