Fixes unexpected diff for aws_lb_listener
and aws_lb_listener_rule
#54299
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
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@0bc4621a3135347011ad047f9ecf449bf72ce2bd # v3.0.0 | |
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@d5fe37641ad8451bdd80312415672ba26c86575e # v3.0.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. |