feat(cog): remove ability to specify if we need to check from latest tag only
All checks were successful
Cog Release / Create release (push) Successful in 7s

This commit is contained in:
2024-11-21 22:48:40 +02:00
parent fcc9ac5d86
commit 5eefad3bfc
2 changed files with 14 additions and 12 deletions

View File

@@ -4,11 +4,11 @@ on:
branches:
- main
workflow_call:
inputs:
check-latest-tag-only:
type: boolean
required: false
default: true
# inputs:
# check-latest-tag-only:
# type: boolean
# required: false
# default: true
jobs:
release:
@@ -33,7 +33,8 @@ jobs:
release: true
git-user: "gitea-bot"
git-user-email: "bot@git.palkoi.net"
check-latest-tag-only: ${{ inputs.check-latest-tag-only }}
check-latest-tag-only: true
# check-latest-tag-only: ${{ inputs.check-latest-tag-only }}
- name: Generate Changelog
run: cog changelog --at ${{ steps.release.outputs.version }} -t full_hash > GITHUB_CHANGELOG.md