- Notifications
You must be signed in to change notification settings - Fork686
PermalinkChoose a base ref {{ refName }}default Choose a head ref {{ refName }}default
Comparing changes
Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also orlearn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also.Learn more about diff comparisons here.
base repository:github-aws-runners/terraform-aws-github-runner
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
Uh oh!
There was an error while loading.Please reload this page.
base:v6.8.0
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}defaultLoading
...
head repository:github-aws-runners/terraform-aws-github-runner
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
Uh oh!
There was an error while loading.Please reload this page.
compare:v6.8.1
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}defaultLoading
- 2commits
- 2files changed
- 2contributors
Commits on Oct 4, 2025
fix: prevent unnecessary updates when cpu_options is unset (#4806)
This PR will replace:```hclcpu_options { core_count = var.cpu_options != null ? var.cpu_options.core_count : null threads_per_core = var.cpu_options != null ? var.cpu_options.threads_per_core : null}```with:```hcldynamic "cpu_options" { for_each = var.cpu_options != null ? [var.cpu_options] : [] content { core_count = try(cpu_options.value.core_count, null) threads_per_core = try(cpu_options.value.threads_per_core, null) }}```This way, if `cpu_options` is not set, Terraform will **not force aresource update every time**.This issue was introduced in PR#4789 <img width="346" height="94" alt="image"src="https://github.com/user-attachments/assets/5a3ca60d-7300-4957-91c3-ff87c2cd5b62"/>chore(main): release 6.8.1 (#4807)
🤖 I have created a release *beep* *boop*---##[6.8.1](v6.8.0...v6.8.1)(2025-10-04)### Bug Fixes* prevent unnecessary updates when cpu_options is unset([#4806](#4806))([8a1cd6f](8a1cd6f))@edersonbrilhante---This PR was generated with [ReleasePlease](https://github.com/googleapis/release-please). See[documentation](https://github.com/googleapis/release-please#release-please).Co-authored-by: runners-releaser[bot] <194412594+runners-releaser[bot]@users.noreply.github.com>
Loading
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:git diff v6.8.0...v6.8.1
Uh oh!
There was an error while loading.Please reload this page.