Skip to content

chore!: add deprecation for cloudavenue_vdc_group #93

chore!: add deprecation for cloudavenue_vdc_group

chore!: add deprecation for cloudavenue_vdc_group #93

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
permissions:
contents: write
pull-requests: write
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.CHANGELOG_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:
branch: main
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>