File tree Expand file tree Collapse file tree 7 files changed +13
-1096
lines changed
java/src/main/java/com/pulumi/aws/xray Expand file tree Collapse file tree 7 files changed +13
-1096
lines changed Original file line number Diff line number Diff line change @@ -99,11 +99,23 @@ jobs:
9999 - name : Build SDK
100100 run : make build_${{ matrix.language }}
101101 # Commit all changed files back to the repository
102+ - name : Sync any changes from the remote
103+ run : git pull
102104 - name : Commit generated SDK
103105 uses : rquitales/git-recommit-action@v1
106+ id : recommit
104107 with :
105108 commit_message : " [automated] Add generated SDKs"
106109 file_pattern : sdk/
110+ # push_options: --dry-run
111+ - name : Comment PR if changes were made
112+ if : steps.recommit.outputs.changes_detected == 'true'
113+ uses : thollander/actions-comment-pull-request@v2
114+ with :
115+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
116+ message : >
117+ A new commit was added to this PR as part of the SDK build process.
118+ SDKs were recommitted for the following language: ${{ matrix.language }}.
107119 - name : Check worktree clean
108120 run : ./ci-scripts/ci/check-worktree-is-clean
109121 - name : Compress SDK folder
Original file line number Diff line number Diff line change @@ -7002,7 +7002,7 @@ func Provider() tfbridge.ProviderInfo {
70027002 prov .SetAutonaming (255 , "-" )
70037003
70047004 // Add a CSharp-specific override for aws_s3_bucket.bucket.
7005- prov .Resources ["aws_s3_bucket_legacy" ].Fields ["bucket" ].CSharpName = "BucketName "
7005+ prov .Resources ["aws_s3_bucket_legacy" ].Fields ["bucket" ].CSharpName = "BucketNameNew "
70067006
70077007 return prov
70087008}
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments