ansible-collections / amazon.aws

Ansible Collection for Amazon AWS
GNU General Public License v3.0
310 stars 336 forks source link

Update return block - s3_bucket, s3_bucket_info, s3_object #2135

Closed mandar242 closed 3 months ago

mandar242 commented 3 months ago
SUMMARY

Updated return block of following modules

- s3_bucket
- s3_bucket_info
- s3_object
ISSUE TYPE
COMPONENT NAME
ADDITIONAL INFORMATION
github-actions[bot] commented 3 months ago

Docs Build 📝

Thank you for contribution!✨

This PR has been merged and your docs changes will be incorporated when they are next published.

softwarefactory-project-zuul[bot] commented 3 months ago

Build succeeded. https://ansible.softwarefactory-project.io/zuul/buildset/55564d3272494524937066a6caf31fce

:heavy_check_mark: ansible-galaxy-importer SUCCESS in 3m 22s :heavy_check_mark: build-ansible-collection SUCCESS in 12m 35s :heavy_check_mark: ansible-test-splitter SUCCESS in 5m 13s :heavy_check_mark: integration-amazon.aws-1 SUCCESS in 13m 16s :heavy_check_mark: integration-amazon.aws-2 SUCCESS in 6m 23s :heavy_check_mark: integration-amazon.aws-3 SUCCESS in 5m 14s Skipped 41 jobs

softwarefactory-project-zuul[bot] commented 3 months ago

Build succeeded. https://ansible.softwarefactory-project.io/zuul/buildset/77dd22e47337440699b792d425793d03

:heavy_check_mark: ansible-galaxy-importer SUCCESS in 3m 59s :heavy_check_mark: build-ansible-collection SUCCESS in 12m 53s :heavy_check_mark: ansible-test-splitter SUCCESS in 5m 14s :heavy_check_mark: integration-amazon.aws-1 SUCCESS in 10m 53s :heavy_check_mark: integration-amazon.aws-2 SUCCESS in 5m 25s :heavy_check_mark: integration-amazon.aws-3 SUCCESS in 4m 55s Skipped 41 jobs

softwarefactory-project-zuul[bot] commented 3 months ago

Build succeeded. https://ansible.softwarefactory-project.io/zuul/buildset/bd7820997a9e484faa44fc226323cf5c

:heavy_check_mark: ansible-galaxy-importer SUCCESS in 4m 24s :heavy_check_mark: build-ansible-collection SUCCESS in 12m 53s :heavy_check_mark: ansible-test-splitter SUCCESS in 5m 16s :heavy_check_mark: integration-amazon.aws-1 SUCCESS in 11m 16s :heavy_check_mark: integration-amazon.aws-2 SUCCESS in 4m 59s :heavy_check_mark: integration-amazon.aws-3 SUCCESS in 7m 54s Skipped 41 jobs

softwarefactory-project-zuul[bot] commented 3 months ago

Build succeeded. https://ansible.softwarefactory-project.io/zuul/buildset/0ea2fe14a0324f098afc462d94b88899

:heavy_check_mark: ansible-galaxy-importer SUCCESS in 3m 29s :heavy_check_mark: build-ansible-collection SUCCESS in 13m 16s :heavy_check_mark: ansible-test-splitter SUCCESS in 5m 20s :heavy_check_mark: integration-amazon.aws-1 SUCCESS in 12m 07s :heavy_check_mark: integration-amazon.aws-2 SUCCESS in 6m 16s :heavy_check_mark: integration-amazon.aws-3 SUCCESS in 6m 00s Skipped 41 jobs

softwarefactory-project-zuul[bot] commented 3 months ago

Build succeeded. https://ansible.softwarefactory-project.io/zuul/buildset/4a28c27e06b84319898b29c14898b4df

:heavy_check_mark: ansible-galaxy-importer SUCCESS in 3m 48s :heavy_check_mark: build-ansible-collection SUCCESS in 12m 52s :heavy_check_mark: ansible-test-splitter SUCCESS in 5m 29s :heavy_check_mark: integration-amazon.aws-1 SUCCESS in 11m 16s :heavy_check_mark: integration-amazon.aws-2 SUCCESS in 5m 02s :heavy_check_mark: integration-amazon.aws-3 SUCCESS in 4m 33s Skipped 41 jobs

softwarefactory-project-zuul[bot] commented 3 months ago

Build succeeded (gate pipeline). https://ansible.softwarefactory-project.io/zuul/buildset/f515c77d73694c5aa9b3e4cd35523143

:heavy_check_mark: ansible-galaxy-importer SUCCESS in 4m 34s :heavy_check_mark: build-ansible-collection SUCCESS in 12m 54s :heavy_check_mark: ansible-test-splitter SUCCESS in 5m 22s :heavy_check_mark: integration-amazon.aws-1 SUCCESS in 11m 26s :heavy_check_mark: integration-amazon.aws-2 SUCCESS in 6m 32s :heavy_check_mark: integration-amazon.aws-3 SUCCESS in 8m 57s Skipped 41 jobs

patchback[bot] commented 1 month ago

Backport to stable-8: 💔 cherry-picking failed — conflicts found

❌ Failed to cleanly apply 34e3954496d43ab76ae0192b795dc6380c8db804 on top of patchback/backports/stable-8/34e3954496d43ab76ae0192b795dc6380c8db804/pr-2135

Backporting merged PR #2135 into main

  1. Ensure you have a local repo clone of your fork. Unless you cloned it from the upstream, this would be your origin remote.
  2. Make sure you have an upstream repo added as a remote too. In these instructions you'll refer to it by the name upstream. If you don't have it, here's how you can add it:
    $ git remote add upstream https://github.com/ansible-collections/amazon.aws.git
  3. Ensure you have the latest copy of upstream and prepare a branch that will hold the backported code:
    $ git fetch upstream
    $ git checkout -b patchback/backports/stable-8/34e3954496d43ab76ae0192b795dc6380c8db804/pr-2135 upstream/stable-8
  4. Now, cherry-pick PR #2135 contents into that branch:
    $ git cherry-pick -x 34e3954496d43ab76ae0192b795dc6380c8db804

    If it'll yell at you with something like fatal: Commit 34e3954496d43ab76ae0192b795dc6380c8db804 is a merge but no -m option was given., add -m 1 as follows instead:

    $ git cherry-pick -m1 -x 34e3954496d43ab76ae0192b795dc6380c8db804
  5. At this point, you'll probably encounter some merge conflicts. You must resolve them in to preserve the patch from PR #2135 as close to the original as possible.
  6. Push this branch to your fork on GitHub:
    $ git push origin patchback/backports/stable-8/34e3954496d43ab76ae0192b795dc6380c8db804/pr-2135
  7. Create a PR, ensure that the CI is green. If it's not — update it so that the tests and any other checks pass. This is it! Now relax and wait for the maintainers to process your pull request when they have some cycles to do reviews. Don't worry — they'll tell you if any improvements are necessary when the time comes!

🤖 @patchback I'm built with octomachinery and my source is open — https://github.com/sanitizers/patchback-github-app.