forked from integrations/terraform-provider-github
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from Flaconi/update-5.45.0
Update to 5.45.0 from usptream
- Loading branch information
Showing
1,315 changed files
with
87,580 additions
and
17,680 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
name: Bug | ||
description: Report a bug or issue | ||
title: "[BUG]: " | ||
labels: ["Type: Bug", "Status: Triage"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Hi there, | ||
Thank you for opening an issue. Please note that we try to keep the Terraform issue tracker reserved for bug reports and feature requests. For general usage questions, please see: https://www.terraform.io/community.html. | ||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: Expected Behavior | ||
description: What should have happened? | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: actual-behavior | ||
attributes: | ||
label: Actual Behavior | ||
description: What actually happened? | ||
validations: | ||
required: true | ||
|
||
|
||
- type: textarea | ||
id: terraform-version | ||
attributes: | ||
label: Terraform Version | ||
description: Run `terraform -v` to show the version. If you are not running the latest version of Terraform, please upgrade because your issue may have already been fixed. | ||
placeholder: | | ||
Terraform v1.2.3 | ||
on linux_amd64 | ||
+ provider registry.terraform.io/integrations/github v5.32.0 | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: affected-resources | ||
attributes: | ||
label: Affected Resource(s) | ||
description: | | ||
Please list the resources as a list. If this issue appears to affect multiple resources, it may be an issue with Terraform's core, so please mention this. | ||
placeholder: | | ||
- github_repository | ||
- github_branch_protection | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: terraform-configuration-files | ||
attributes: | ||
label: Terraform Configuration Files | ||
render: hcl | ||
description: | | ||
Please copy and paste any relevant configration files. This will be automatically formatted into code, so no need for backticks. | ||
Please check your configuration before submission to ensure sensitive information is redacted. | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: steps-to-reproduce | ||
attributes: | ||
label: Steps to Reproduce | ||
description: Please list the steps required to reproduce the issue. | ||
placeholder: | | ||
``` | ||
$ terraform apply | ||
``` | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: debug-output | ||
attributes: | ||
label: Debug Output | ||
description: | | ||
Please copy and paste any relevant debug output. This will be automatically formatted into code, so no need for backticks. | ||
Please check your logs before submission to ensure sensitive information is redacted. | ||
render: shell | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: panic-output | ||
attributes: | ||
label: Panic Output | ||
description: | | ||
Please copy and paste any relevant panic output. This will be automatically formatted into code, so no need for backticks. | ||
Please check your logs before submission to ensure sensitive information is redacted. | ||
render: shell | ||
validations: | ||
required: false | ||
|
||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Code of Conduct | ||
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/integrations/terraform-provider-github/blob/main/CODE_OF_CONDUCT.md) | ||
options: | ||
- label: I agree to follow this project's Code of Conduct | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,10 +16,13 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
fetch-depth: 2 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.21' | ||
- name: Acceptance Tests (Anonymous) | ||
uses: terraformtesting/[email protected] | ||
with: | ||
|
@@ -30,10 +33,13 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
fetch-depth: 2 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.21' | ||
|
||
- name: Acceptance Tests (Individual) | ||
id: acceptance-tests-individual | ||
|
@@ -59,10 +65,13 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
fetch-depth: 2 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.21' | ||
|
||
- name: Acceptance Tests (Organization) | ||
id: acceptance-tests-organization | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,9 +17,12 @@ jobs: | |
jq -rc .label.name $GITHUB_EVENT_PATH | cut -d/ -f 2 | ||
)" | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.21' | ||
- name: Acceptance Tests (Anonymous) | ||
id: acceptance-tests-anonymous | ||
uses: terraformtesting/[email protected] | ||
|
@@ -45,9 +48,12 @@ jobs: | |
jq -rc .label.name $GITHUB_EVENT_PATH | cut -d/ -f 2 | ||
)" | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.21' | ||
- name: Acceptance Tests (Individual) | ||
id: acceptance-tests-individual | ||
uses: terraformtesting/[email protected] | ||
|
@@ -78,9 +84,12 @@ jobs: | |
jq -rc .label.name $GITHUB_EVENT_PATH | cut -d/ -f 2 | ||
)" | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.21' | ||
|
||
- name: Acceptance Tests (Organization) | ||
id: acceptance-tests-organization | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
fetch-depth: 2 | ||
|
@@ -24,10 +24,13 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
fetch-depth: 2 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.21' | ||
- name: Acceptance Tests (Individual) | ||
uses: terraformtesting/[email protected] | ||
with: | ||
|
@@ -40,10 +43,13 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
fetch-depth: 2 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.21' | ||
- name: Acceptance Tests (Organization) | ||
uses: terraformtesting/[email protected] | ||
with: | ||
|
Oops, something went wrong.