Skip to content

build(deps): bump github.com/aws/aws-sdk-go from 1.36.28 to 1.50.21 in /awsproviderlint #928

build(deps): bump github.com/aws/aws-sdk-go from 1.36.28 to 1.50.21 in /awsproviderlint

build(deps): bump github.com/aws/aws-sdk-go from 1.36.28 to 1.50.21 in /awsproviderlint #928

name: Generate CHANGELOG
on:
pull_request:
types: [closed]
jobs:
GenerateChangelog:
if: github.event.pull_request.merged
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- run: cd tools && go install github.com/hashicorp/go-changelog/cmd/changelog-build
- run: |
./scripts/generate-changelog.sh
git config --local user.email "changelogbot@hashicorp.com"
git config --local user.name "changelogbot"
git add CHANGELOG.md
git commit -m "Update CHANGELOG.md for #${{ github.event.pull_request.number }}"
git push