Skip to content

chore(deps): bump github.com/spf13/viper from 1.18.2 to 1.19.0 #34

chore(deps): bump github.com/spf13/viper from 1.18.2 to 1.19.0

chore(deps): bump github.com/spf13/viper from 1.18.2 to 1.19.0 #34

Workflow file for this run

name: PR Close
on:
pull_request:
types: [closed]
workflow_dispatch:
concurrency:
group: ${{ github.ref }}-${{ github.head_ref }}-changelog
cancel-in-progress: true
jobs:
GenerateChangelog:
if: github.event.pull_request.merged || github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.PAT }}
fetch-depth: 0
submodules: false
ref: main
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
# * CHANGELOG
- run: go install github.com/hashicorp/go-changelog/cmd/changelog-build@latest
- run: bash .github/changelog/generate-changelog.sh
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "chore: Update CHANGELOG.md"
commit_options: '--no-verify --signoff'
push_options: '--force'
file_pattern: CHANGELOG.md
commit_user_name: github-actions[bot]
commit_user_email: github-actions[bot]@users.noreply.github.com
commit_author: Changelog Bot <github-actions[bot]@users.noreply.github.com>