Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/workflows/create-v1.0.2-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Create v1.0.2 Release

on:
workflow_dispatch:

jobs:
create-release:
runs-on: ubuntu-latest
permissions:
contents: write

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Create Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v1.0.2
release_name: v1.0.2
draft: false
prerelease: false
body: |
## v1.0.2 – 2025-08-12

### Fixed
- Branch validation now works in GitHub Actions environments where local branches may not exist after checkout
- Fallback to remote branch and fetch if local branch is missing
- All error messages and documentation use direct, factual language as per project guidelines
- Tests updated for new validation logic

This release addresses errors where GitHub Actions failed with 'Branch does not exist' due to missing local refs after checkout. All users should update to v1.0.2 for reliable CI/CD operation.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.2] - 2025-08-12

### Fixed
- Branch validation now works in GitHub Actions environments where local branches may not exist after checkout
- Fallback to remote branch and fetch if local branch is missing
- All error messages and documentation use direct, factual language as per project guidelines
- Tests updated for new validation logic

## [1.0.1] - 2025-08-12

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion dist/KeepAChangelogManager.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/ReleaseWorkflow.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/ai-analyzer.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/git-operations.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading