[release/4.x] d/aws_s3_object: Test key with multiple leading slashes #29464
Workflow file for this run
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
on: | |
- pull_request_target | |
name: Pull Request Target (All types) | |
jobs: | |
community_check: | |
uses: ./.github/workflows/community-check.yml | |
secrets: inherit | |
Labeler: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab | |
- name: Apply Labels | |
uses: actions/labeler@v4 | |
with: | |
configuration-path: .github/labeler-pr-triage.yml | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
NeedsTriageLabeler: | |
needs: community_check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab | |
- name: Apply needs-triage Label | |
uses: actions/labeler@v4 | |
if: github.event.action == 'opened' && needs.community_check.outputs.maintainer == 'false' | |
with: | |
configuration-path: .github/labeler-pr-needs-triage.yml | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
SizeLabeler: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Apply Size Label | |
uses: codelytv/pr-size-labeler@v1 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
xs_label: 'size/XS' | |
xs_max_size: '30' | |
s_label: 'size/S' | |
s_max_size: '60' | |
m_label: 'size/M' | |
m_max_size: '150' | |
l_label: 'size/L' | |
l_max_size: '300' | |
xl_label: 'size/XL' | |
message_if_xl: '' | |
PullRequestComments: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Add comment to add helpful context for new contributors | |
uses: actions/[email protected] | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
pr-message: |- | |
Welcome @${{github.actor}} :wave: | |
It looks like this is your first Pull Request submission to the [Terraform AWS Provider](https://github.com/hashicorp/terraform-provider-aws)! If you haven’t already done so please make sure you have checked out our [CONTRIBUTOR](https://hashicorp.github.io/terraform-provider-aws/) guide and [FAQ](https://hashicorp.github.io/terraform-provider-aws/faq/) to make sure your contribution is adhering to best practice and has all the necessary elements in place for a successful approval. | |
Also take a look at our [FAQ](https://hashicorp.github.io/terraform-provider-aws/faq/) which details how we prioritize Pull Requests for inclusion. | |
Thanks again, and welcome to the community! :smiley: |