mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-02-11 15:48:03 +00:00
Fix(github): Changelog generator fixes
This commit is contained in:
30
.github/workflows/changelog.yml
vendored
30
.github/workflows/changelog.yml
vendored
@@ -5,27 +5,19 @@ on:
|
|||||||
workflow_dispatch: # Trigger manually
|
workflow_dispatch: # Trigger manually
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
changelog:
|
debug-changelog:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Conventional Changelog Action
|
- name: Create changelog text
|
||||||
id: generate-changelog
|
id: changelog
|
||||||
uses: TriPSs/conventional-changelog-action@v3
|
uses: loopwerk/tag-changelog@v1
|
||||||
with:
|
with:
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
skip-git-pull: "true"
|
|
||||||
skip-on-empty: "false"
|
- name: "Echo results"
|
||||||
skip-commit: "true"
|
id: output-changelog
|
||||||
skip-tag: "true"
|
run: |
|
||||||
skip-version-file: "true"
|
echo "${{ steps.changelog.outputs.changes }}"
|
||||||
create-summary: "true"
|
|
||||||
output-file: "false"
|
|
||||||
tag-prefix: ""
|
|
||||||
git-push: "false"
|
|
||||||
release-count: "0"
|
|
||||||
fallback-version: "22.11.14" # The oldest tag
|
|
||||||
git-message: "chore(release): {version}"
|
|
||||||
git-user-name: "${{ github.actor }}"
|
|
||||||
git-user-email: "${{ github.actor }}@users.noreply.github.com"
|
|
||||||
|
|||||||
Reference in New Issue
Block a user