Skip to content

Commit b67a972

Browse files
CopilotTingluoHuang
andcommitted
Change orchestration ID format to actions_orchestration_id
Co-authored-by: TingluoHuang <1750815+TingluoHuang@users.noreply.github.com>
1 parent c0078b2 commit b67a972

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36327,7 +36327,7 @@ function getUserAgentWithOrchestrationId(userAgent) {
3632736327
}
3632836328
// Sanitize orchestration ID - replace invalid characters with underscore
3632936329
const sanitized = orchestrationId.replace(/[^a-zA-Z0-9._-]/g, '_');
36330-
return `${userAgent} orchestration-id/${sanitized}`;
36330+
return `${userAgent} actions_orchestration_id/${sanitized}`;
3633136331
}
3633236332

3633336333
})();

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,5 +114,5 @@ function getUserAgentWithOrchestrationId(userAgent: string): string {
114114
// Sanitize orchestration ID - replace invalid characters with underscore
115115
const sanitized = orchestrationId.replace(/[^a-zA-Z0-9._-]/g, '_')
116116

117-
return `${userAgent} orchestration-id/${sanitized}`
117+
return `${userAgent} actions_orchestration_id/${sanitized}`
118118
}

0 commit comments

Comments
 (0)