mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-02-21 10:55:53 +00:00
Fix(github): Changelog generator fixes
This commit is contained in:
11
.github/workflows/changelog.yml
vendored
11
.github/workflows/changelog.yml
vendored
@@ -5,18 +5,13 @@ on:
|
|||||||
workflow_dispatch: # Trigger manually
|
workflow_dispatch: # Trigger manually
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
create-debug-changelog:
|
changelog:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
outputs:
|
|
||||||
date: ${{ steps.day.outputs.now }}
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- id: day
|
|
||||||
run: echo "now=$(date +'%Y.%-m.%-d')" >> "$GITHUB_OUTPUT"
|
|
||||||
|
|
||||||
- name: Conventional Changelog Action
|
- name: Conventional Changelog Action
|
||||||
id: changelog
|
id: generate-changelog
|
||||||
uses: TriPSs/conventional-changelog-action@v3
|
uses: TriPSs/conventional-changelog-action@v3
|
||||||
with:
|
with:
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
@@ -30,7 +25,7 @@ jobs:
|
|||||||
tag-prefix: ""
|
tag-prefix: ""
|
||||||
git-push: "false"
|
git-push: "false"
|
||||||
release-count: "0"
|
release-count: "0"
|
||||||
fallback-version: "${{ steps.day.outputs.date }}"
|
fallback-version: "22.11.14" # The oldest tag
|
||||||
git-message: "chore(release): {version}"
|
git-message: "chore(release): {version}"
|
||||||
git-user-name: "${{ github.actor }}"
|
git-user-name: "${{ github.actor }}"
|
||||||
git-user-email: "${{ github.actor }}@users.noreply.github.com"
|
git-user-email: "${{ github.actor }}@users.noreply.github.com"
|
||||||
|
|||||||
Reference in New Issue
Block a user