We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97de234 commit 8b61d39Copy full SHA for 8b61d39
lambdas/functions/control-plane/src/scale-runners/scale-up.ts
@@ -418,7 +418,7 @@ async function createRegistrationTokenConfig(
418
419
async function addGhRunnerIdToEC2InstanceTag(instanceId: string, runnerId: string): Promise<void> {
420
try {
421
- await tag(instanceId, [{ Key: 'ghr:githubrunnerid', Value: runnerId }]);
+ await tag(instanceId, [{ Key: 'ghr:github_runner_id', Value: runnerId }]);
422
logger.info(`Runner '${instanceId}' marked with ${runnerId}.`);
423
} catch (e) {
424
logger.error(`Failed to mark runner '${instanceId}' with ${runnerId}.`, { error: e });
0 commit comments