Skip to content

Commit 601efb0

Browse files
authored
Fix lost space in copilot variable substitution (#6963)
1 parent 85a2a54 commit 601efb0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/github/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1547,7 +1547,7 @@ export async function variableSubstitution(
15471547

15481548
// not a variable, but still a substitution that needs to be done
15491549
const withCopilot = withVariables.replace(COPILOT_PATTERN, () => {
1550-
return `:copilot-swe-agent[bot]`;
1550+
return `:copilot-swe-agent[bot] `;
15511551
});
15521552
return withCopilot;
15531553
}

0 commit comments

Comments
 (0)