3 Commits
2.0.2 ... 2.0.4

Author SHA1 Message Date
50ff19fae2 chore(deps): cocogitto/cocogitto-action - checkout head sha
All checks were successful
Cog release / Create release (push) Successful in 8s
2026-01-04 01:41:25 +02:00
63da84fe0a chore(deps): update cocogitto/cocogitto-action action to v4
All checks were successful
Cog check / Create release (pull_request) Successful in 6s
Cog release / Create release (push) Successful in 9s
2026-01-03 17:59:18 +02:00
4b3b1ab69f chore(deps): update cocogitto/cocogitto-action action to v4
Some checks failed
Cog check / Create release (pull_request) Failing after 6s
2026-01-03 17:51:42 +02:00
2 changed files with 13 additions and 9 deletions

View File

@@ -20,9 +20,9 @@ jobs:
fetch-depth: 0 fetch-depth: 0
- name: Semver release - name: Semver release
uses: cocogitto/cocogitto-action@v3 uses: cocogitto/cocogitto-action@v4
with: with:
# check-latest-tag-only: ${{ inputs.check-latest-tag-only }} command: check
check-latest-tag-only: true args: --from-latest-tag
git-user: "gitea-bot" git-user: "gitea-bot"
git-user-email: "bot@git.palkoi.net" git-user-email: "bot@git.palkoi.net"

View File

@@ -20,6 +20,7 @@ jobs:
- uses: actions/checkout@v6 - uses: actions/checkout@v6
with: with:
fetch-depth: 0 fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
- run: | - run: |
git config user.name gitea-bot git config user.name gitea-bot
@@ -28,20 +29,23 @@ jobs:
git config --global user.name gitea-bot git config --global user.name gitea-bot
- name: Semver release - name: Semver release
uses: cocogitto/cocogitto-action@v3 uses: cocogitto/cocogitto-action@v4
id: release id: release
with: with:
release: true command: bump
args: --auto
git-user: "gitea-bot" git-user: "gitea-bot"
git-user-email: "bot@git.palkoi.net" git-user-email: "bot@git.palkoi.net"
check-latest-tag-only: true
# check-latest-tag-only: ${{ inputs.check-latest-tag-only }}
- name: Generate Changelog - name: Generate Changelog
run: cog changelog --at ${{ steps.release.outputs.version }} -t full_hash > GITHUB_CHANGELOG.md id: changelog
uses: cocogitto/cocogitto-action@v4
with:
command: changelog
args: --at ${{ steps.release.outputs.version }} -t full_hash
- name: Upload github release - name: Upload github release
uses: softprops/action-gh-release@v2 uses: softprops/action-gh-release@v2
with: with:
body_path: GITHUB_CHANGELOG.md body_path: ${{ steps.changelog.outputs.stdout }}
tag_name: ${{ steps.release.outputs.version }} tag_name: ${{ steps.release.outputs.version }}