mirror of
https://github.com/jhbruhn/respira.git
synced 2026-01-27 02:13:41 +00:00
- Add build.yml workflow for continuous integration - Builds web app on Ubuntu - Packages Electron app for Windows, macOS, and Linux - Uploads artifacts for each platform - Add release.yml workflow with release-drafter integration - Automatically creates draft releases on push to main - Auto-calculates version based on PR labels (major/minor/patch) - Updates package.json version during build for proper installers - Uploads platform-specific installers to draft releases - Add release-drafter.yml configuration - Organizes changelog by categories (Features, Bug Fixes, Maintenance) - Supports semantic versioning via PR labels 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
43 lines
842 B
YAML
43 lines
842 B
YAML
name-template: 'v$RESOLVED_VERSION'
|
|
tag-template: 'v$RESOLVED_VERSION'
|
|
|
|
categories:
|
|
- title: '🚀 Features'
|
|
labels:
|
|
- 'feature'
|
|
- 'enhancement'
|
|
- title: '🐛 Bug Fixes'
|
|
labels:
|
|
- 'fix'
|
|
- 'bugfix'
|
|
- 'bug'
|
|
- title: '🧰 Maintenance'
|
|
labels:
|
|
- 'chore'
|
|
- 'dependencies'
|
|
|
|
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
|
|
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
|
|
|
|
version-resolver:
|
|
major:
|
|
labels:
|
|
- 'major'
|
|
- 'breaking'
|
|
minor:
|
|
labels:
|
|
- 'minor'
|
|
- 'feature'
|
|
patch:
|
|
labels:
|
|
- 'patch'
|
|
- 'fix'
|
|
- 'bugfix'
|
|
default: patch
|
|
|
|
template: |
|
|
## Changes
|
|
|
|
$CHANGES
|
|
|
|
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION
|