Matt Dainty
Matt Dainty
So I got to the point of publishing this to the marketplace and it flagged that there was an action that already existed. Sure enough there's https://github.com/lablabs/setup-terraform-docs which hadn't turned...
I think I'm hitting the same issue, every Terraform plan shows this for every repository: ``` # github_repository.repository will be updated in-place ~ resource "github_repository" "repository" { ~ allow_merge_commit =...
I'm currently configuring the provider like so: ```hcl provider "github" { owner = "MyOrg" app_auth { installation_id = "12345678" } } ``` I'm then exporting the `GITHUB_APP_ID` and `GITHUB_APP_PEM_FILE` environment...
I've done some more digging. Using the following command: ``` curl -H "Accept: application/vnd.github+json" \ -H "Authorization: Bearer " \ -H "X-GitHub-Api-Version: 2022-11-28" \ https://api.github.com/repos/MyOrg/my-repo ``` I run the command...
I contacted GitHub support about this. Adding the Repository Contents R/W permission to the App permissions fixes it; my Terraform runs are now no-ops once more. This seems slightly counter-intuitive...
So I finally got a response from GitHub support: > On github.com, only users with push access can figure out which merge options are available because only users with push...
Looks like 4.39.0 has #25509 merged however that's not really much use; you can get the ID of a domain list if you know the ID already. It would be...
Looking through the AWS SDK, it looks like you can currently only retrieve domain lists by ID: https://docs.aws.amazon.com/sdk-for-go/api/service/route53resolver/#GetFirewallDomainListInput So it will need the AWS SDK to be updated before this...
Great, thanks for the reply. Yeah, I was looking at the datasheet for the PCMCIA connector and noticed the gap between the rows of pins was something like 0.35mm so...
With a bit of poking about in the source I managed to get it working with the following change: ```diff diff --git a/config.c b/config.c index ff3e6a1..d06d64e 100644 --- a/config.c +++...