-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into b-medialive_channel_hls_cdn_settings
- Loading branch information
Showing
52 changed files
with
2,975 additions
and
147 deletions.
There are no files selected for viewing
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,3 @@ | ||
```release-note:enhancement | ||
resource/aws_ec2_transit_gateway_route_table_association: Add `replace_existing_association` argument | ||
``` |
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,3 @@ | ||
```release-note:enhancement | ||
provider: Adds `retry_mode` parameter | ||
``` |
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,3 @@ | ||
```release-note:new-resource | ||
aws_finspace_kx_environment | ||
``` |
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,3 @@ | ||
```release-note:new-resource | ||
aws_finspace_kx_database | ||
``` |
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,3 @@ | ||
```release-note:new-resource | ||
aws_finspace_kx_user | ||
``` |
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,7 @@ | ||
```release-note:enhancement | ||
resource/aws_mwaa_environment: Consider `CREATING_SNAPSHOT` a valid pending state for resource update | ||
``` | ||
|
||
```release-note:note | ||
resource/aws_mwaa_environment: Upgrading your environment to a new major version of Apache Airflow forces replacement of the resource | ||
``` |
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,7 @@ | ||
```release-note:enhancement | ||
resource/aws_lambda_function: Add support for `ruby3.2` `runtime` value | ||
``` | ||
|
||
```release-note:enhancement | ||
resource/aws_lambda_layer_version: Add support for `ruby3.2` `compatible_runtimes` value | ||
``` |
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
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
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 |
---|---|---|
|
@@ -13,10 +13,33 @@ jobs: | |
needs: community_check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Move team PRs to Review column | ||
uses: alex-page/[email protected] | ||
- name: 'Move team PRs to Review column' | ||
if: github.event.pull_request.draft == false && needs.community_check.outputs.maintainer == 'true' | ||
with: | ||
project: AWS Provider Working Board | ||
column: Open Maintainer PR | ||
repo-token: ${{ secrets.ORGSCOPED_GITHUB_TOKEN}} | ||
env: | ||
DESTINATION_COLUMN_ID: 'MDEzOlByb2plY3RDb2x1bW4xMTUxMzYzOA==' | ||
GH_TOKEN: ${{ secrets.ORGSCOPED_GITHUB_TOKEN }} | ||
run: | | ||
PROJCOLUMNS=$(gh api graphql -f query=' | ||
query { | ||
repository(name: "${{ github.event.repository.name }}", owner: "${{ github.repository_owner }}") { | ||
pullRequest(number: ${{ github.event.pull_request.number }}) { | ||
projectCards { | ||
nodes { | ||
column { | ||
name | ||
id | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}') | ||
INPROJECT=$(echo $PROJCOLUMNS | jq '.data.repository.pullRequest.projectCards.nodes[].column | select(.id=="${{ env.DESTINATION_COLUMN_ID }}")') | ||
if [ -z "$INPROJECT" ]; | ||
then | ||
gh api graphql -f query='mutation { | ||
addProjectCard(input: {projectColumnId: "${{ env.DESTINATION_COLUMN_ID }}", contentId: "${{ github.event.pull_request.node_id }}"}) { | ||
clientMutationId | ||
} | ||
}' | ||
fi |
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 |
---|---|---|
|
@@ -43,11 +43,63 @@ jobs: | |
AddToWorkingBoard: | ||
name: Add regression to Working Board | ||
if: github.event.label.name == 'regression' | ||
env: | ||
DESTINATION_COLUMN_ID: 'MDEzOlByb2plY3RDb2x1bW4xMTUxMzUyOQ==' | ||
GH_TOKEN: ${{ secrets.ORGSCOPED_GITHUB_TOKEN }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Add regressions to To Do column | ||
uses: alex-page/[email protected] | ||
with: | ||
project: AWS Provider Working Board | ||
column: To Do | ||
repo-token: ${{ secrets.ORGSCOPED_GITHUB_TOKEN }} | ||
- name: 'Add Regression Issues to To Do column' | ||
if: github.event_name == 'issues' | ||
run: | | ||
PROJCOLUMNS=$(gh api graphql -f query=' | ||
query { | ||
repository(name: "${{ github.event.repository.name }}", owner: "${{ github.repository_owner }}") { | ||
issue(number: ${{ github.event.issue.number }}) { | ||
projectCards { | ||
nodes { | ||
column { | ||
name | ||
id | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}') | ||
INPROJECT=$(echo $PROJCOLUMNS | jq '.data.repository.issue.projectCards.nodes[].column | select(.id=="${{ env.DESTINATION_COLUMN_ID }}")') | ||
if [ -z "$INPROJECT" ]; | ||
then | ||
gh api graphql -f query='mutation { | ||
addProjectCard(input: {projectColumnId: "${{ env.DESTINATION_COLUMN_ID }}", contentId: "${{ github.event.issue.node_id }}"}) { | ||
clientMutationId | ||
} | ||
}' | ||
fi | ||
- name: 'Add Regression Pull Requests to To Do column' | ||
if: github.event_name == 'pull_request' | ||
run: | | ||
PROJCOLUMNS=$(gh api graphql -f query=' | ||
query { | ||
repository(name: "${{ github.event.repository.name }}", owner: "${{ github.repository_owner }}") { | ||
pullRequest(number: ${{ github.event.pull_request.number }}) { | ||
projectCards { | ||
nodes { | ||
column { | ||
name | ||
id | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}') | ||
INPROJECT=$(echo $PROJCOLUMNS | jq '.data.repository.pullRequest.projectCards.nodes[].column | select(.id=="${{ env.DESTINATION_COLUMN_ID }}")') | ||
if [ -z "$INPROJECT" ]; | ||
then | ||
gh api graphql -f query='mutation { | ||
addProjectCard(input: {projectColumnId: "${{ env.DESTINATION_COLUMN_ID }}", contentId: "${{ github.event.pull_request.node_id }}"}) { | ||
clientMutationId | ||
} | ||
}' | ||
fi |
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,42 @@ | ||
name: 'Modify Issue or Pull Request Labels' | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
add: | ||
description: '(Optional) The comma-separated label(s) to add to the Issue or Pull Request.' | ||
required: false | ||
type: string | ||
remove: | ||
description: '(Optional) The comma-separated label(s) to remove from the Issue or Pull Request.' | ||
required: false | ||
type: string | ||
|
||
env: | ||
GH_TOKEN: ${{ github.token }} | ||
ITEM_URL: ${{ github.event.issue.html_url || github.event.pull_request.html_url }} | ||
|
||
jobs: | ||
modify-labels: | ||
name: 'Modify Label(s)' | ||
runs-on: ubuntu-latest | ||
env: | ||
ITEM_TYPE: 'issue' | ||
steps: | ||
- name: 'Determine if the Item is an Issue or Pull Request' | ||
# The issue_comment trigger happens for issues and pull requests. | ||
# The best way to determine if an issue_comment trigger is related to an issue or pull request is to check | ||
# whether or not github.event.issue.pull_request is empty. | ||
if: github.event.pull_request || github.event.issue.pull_request | ||
run: | | ||
echo 'ITEM_TYPE=pr' >> $GITHUB_ENV | ||
- name: 'Add Label(s) to Issue or Pull Request' | ||
if: inputs.add != '' | ||
run: | | ||
gh $ITEM_TYPE edit $ITEM_URL --add-label ${{ inputs.add }} | ||
- name: 'Remove Label(s) From Issue or Pull Request' | ||
if: inputs.remove != '' | ||
run: | | ||
gh $ITEM_TYPE edit $ITEM_URL --remove-label ${{ inputs.remove }} |
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
Oops, something went wrong.