Merge pull request #37514 from hashicorp/t-acctest-literal-tags_key1-… #58266
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
name: CHANGELOG Checks | |
on: | |
push: | |
branches: | |
- main | |
- 'release/**' | |
pull_request_target: | |
jobs: | |
community_check: | |
if: github.event_name == 'pull_request_target' | |
uses: ./.github/workflows/community-check.yml | |
secrets: inherit | |
with: | |
username: ${{ github.event.pull_request.user.login }} | |
changes: | |
needs: community_check | |
name: Filter Changes | |
runs-on: ubuntu-latest | |
outputs: | |
changed: ${{ steps.filter.outputs.changed }} | |
steps: | |
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 | |
if: needs.community_check.outputs.maintainer == 'false' | |
id: filter | |
with: | |
filters: | | |
changed: | |
- CHANGELOG.md | |
comment: | |
needs: changes | |
if: needs.changes.outputs.changed == 'true' | |
name: Comment | |
runs-on: ubuntu-latest | |
steps: | |
- name: Find Existing PR Comment | |
id: prc | |
uses: peter-evans/find-comment@3eae4d37986fb5a8592848f6a574fdf654e61f9e # v3.1.0 | |
with: | |
issue-number: ${{ github.event.pull_request.number }} | |
comment-author: "github-actions[bot]" | |
body-includes: "Please note that the `CHANGELOG.md` file contents are handled by the maintainers during merge" | |
- run: echo ${{ steps.prc.outputs.comment-id }} | |
- name: PR Comment | |
if: steps.prc.outputs.comment-id == '' | |
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
issue-number: ${{ github.event.pull_request.number }} | |
body: |- | |
Thank you for your contribution! :rocket: | |
Please note that the `CHANGELOG.md` file contents are handled by the maintainers during merge. This is to prevent pull request merge conflicts, especially for contributions which may not be merged immediately. Please see the [Contributing Guide](https://github.com/hashicorp/terraform-provider-aws/blob/main/docs/contributing) for additional pull request review items. | |
Remove any changes to the `CHANGELOG.md` file and commit them in this pull request to prevent delays with reviewing and potentially merging this pull request. |