Commit Graph

9 Commits

Author SHA1 Message Date
Matthieu B
19b948b7bc Remove Blacksmith from workflows (#1325)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-05 18:52:12 +02:00
Matthieu B
a9a2bcce58 chore: update dependencies (#1319) 2026-07-05 18:19:28 +02:00
dependabot[bot]
4b5ef073fe build(deps): bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-11-24 10:09:27 +00:00
blacksmith-sh[bot]
76f659f114 Migrate workflows to Blacksmith 2025-11-20 11:55:56 +00:00
blacksmith-sh[bot]
c5002be266 Migrate workflows to Blacksmith 2025-11-20 11:52:42 +00:00
dependabot[bot]
20b8219e25 build(deps): bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-09-16 11:05:39 +00:00
Matthieu B
67e201812c fix: update automation working 2025-09-16 12:46:38 +02:00
Matthieu B
c5932347be fix: improve auto-release workflow to only run on Release PR merges
- Change trigger from push to pull_request closed
- Only run when Release PRs are merged (title starts with 'Release v')
- Check for existing releases to avoid duplicate creation errors
- Simplify version checking using PR title instead of git comparison
- Add proper error handling and informative summaries

This prevents the workflow from running on every push to main
and ensures it only creates releases when Release PRs are merged.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-10 10:16:10 +02:00
Matthieu B
292aa20bcb feat: add automatic GitHub release creation on version bumps
- Detect version changes when Release PRs are merged to main
- Automatically generate changelog from commits since previous version
- Create GitHub release with proper tagging and changelog
- Trigger Docker builds via release event
- Skip pre-release versions (rc, alpha, beta, dev)

This completes the release automation by creating GitHub releases
when Release PRs are merged, eliminating manual release creation.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-10 10:11:50 +02:00