Add support for supports_local_write_forwarding, supports_certificate_rotation_without_restart and supports_integrations #11731
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: Generate CHANGELOG | |
on: | |
pull_request: | |
types: [closed] | |
workflow_dispatch: | |
jobs: | |
GenerateChangelog: | |
if: github.event.pull_request.merged || github.event_name == 'workflow_dispatch' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/create-github-app-token@c1a285145b9d317df6ced56c09f525b5c2b6f755 # v1.11.1 | |
id: app-token | |
with: | |
app-id: ${{ secrets.APP_ID }} | |
private-key: ${{ secrets.APP_PEM }} | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
token: ${{ steps.app-token.outputs.token }} | |
- uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0 | |
with: | |
go-version-file: .ci/tools/go.mod | |
- run: cd .ci/tools && go install github.com/hashicorp/go-changelog/cmd/changelog-build | |
- run: ./.ci/scripts/generate-changelog.sh | |
- run: | | |
if [[ `git status --porcelain` ]]; then | |
if ${{github.event_name == 'workflow_dispatch'}}; then | |
MSG="Update CHANGELOG.md (Manual Trigger)" | |
else | |
MSG="Update CHANGELOG.md for #${{ github.event.pull_request.number }}" | |
fi | |
git config --local user.email [email protected] | |
git config --local user.name changelogbot | |
git add CHANGELOG.md | |
git commit -m "$MSG" | |
git push | |
fi |