Skip to content

Commit 69ff9b8

Browse files
authored
Merge branch 'main' into iainlane/many-events
2 parents 79eb6a5 + 75c16b2 commit 69ff9b8

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [6.5.8](https://github.com/github-aws-runners/terraform-aws-github-runner/compare/v6.5.7...v6.5.8) (2025-06-12)
4+
5+
6+
### Bug Fixes
7+
8+
* scale down log level ([1d32d26](https://github.com/github-aws-runners/terraform-aws-github-runner/commit/1d32d262ff67a13b0eab8cb6b4f19fa5f9479324))
9+
310
## [6.5.7](https://github.com/github-aws-runners/terraform-aws-github-runner/compare/v6.5.6...v6.5.7) (2025-06-11)
411

512

lambdas/functions/control-plane/src/scale-runners/scale-down.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ async function removeRunner(ec2runner: RunnerInfo, ghRunnerIds: number[]): Promi
130130

131131
if (statuses.every((status) => status == 204)) {
132132
await terminateRunner(ec2runner.instanceId);
133-
logger.debug(`AWS runner instance '${ec2runner.instanceId}' is terminated and GitHub runner is de-registered.`);
133+
logger.info(`AWS runner instance '${ec2runner.instanceId}' is terminated and GitHub runner is de-registered.`);
134134
} else {
135135
logger.error(`Failed to de-register GitHub runner: ${statuses}`);
136136
}

0 commit comments

Comments
 (0)