mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-06-29 18:21:10 +00:00
30 lines
615 B
YAML
30 lines
615 B
YAML
name: Generate CHANGELOG
|
|
|
|
on:
|
|
pull_request:
|
|
# types: [closed]
|
|
|
|
release:
|
|
types: [published]
|
|
|
|
issues:
|
|
types: [closed, edited]
|
|
|
|
jobs:
|
|
generate_changelog:
|
|
runs-on: ubuntu-latest
|
|
name: Generate changelog for master branch
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Generate changelog
|
|
uses: charmixer/auto-changelog-action@v1
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
since_tag: v0.4.4
|
|
|
|
- uses: stefanzweifel/git-auto-commit-action@v4
|
|
with:
|
|
commit_message: Update Changelog for PR
|
|
file_pattern: CHANGELOG.md
|