fix(workflow): update system prompt to follow conventional commit format#8
Merged
fix(workflow): update system prompt to follow conventional commit format#8
Conversation
2 tasks
edenreich
reviewed
Nov 26, 2025
edenreich
reviewed
Nov 26, 2025
edenreich
reviewed
Nov 26, 2025
edenreich
reviewed
Nov 26, 2025
edenreich
reviewed
Nov 26, 2025
edenreich
reviewed
Nov 26, 2025
github-actions bot
pushed a commit
that referenced
this pull request
Nov 26, 2025
## [0.3.1](v0.3.0...v0.3.1) (2025-11-26) ### Bug Fixes * Properly escape GitHub event data in bash scripts ([48e8df7](48e8df7)) * Refactor failed tool call detection to use JSON parsing ([#6](#6)) ([562cb64](562cb64)), closes [#5](#5) * **workflow:** Update system prompt to follow conventional commit format ([#8](#8)) ([efe0b62](efe0b62)) ### Documentation * Update model provider in README ([90a236b](90a236b)) ### Maintenance * Update version ([4429ff2](4429ff2))
Contributor
Author
|
🎉 This PR is included in version 0.3.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Resolves #7
This PR updates the system prompt in the infer workflow to follow conventional commit format instead of the previous format that created PR titles like "Fix #5: description".
Changes
"fix: description of changes"to"fix(scope): description of changes""Fix #${ISSUE_NUMBER}: brief description"to"fix(scope): brief description"Acceptance Criteria
Testing
The changes have been tested by:
fix/issue-7fix(workflow): update system prompt to follow conventional commit formatNow when the infer agent creates PRs, they will follow the conventional commit format like
fix(scope): descriptioninstead ofFix #5: description.