Open
Conversation
Configure release-please GitHub Action with manifest-based setup using the simple release type. On pushes to main, release-please will analyze conventional commits, create a Release PR with version bumps and CHANGELOG updates, and create GitHub Releases when merged. Closes #34
There was a problem hiding this comment.
Pull request overview
This PR sets up release-please automation to manage versioning and changelog generation using Conventional Commits. It configures the basic infrastructure for automated releases without including the full build pipeline.
Changes:
- Added release-please GitHub Action workflow that triggers on pushes to main
- Configured release-please to use the "simple" release type with version.txt tracking
- Initialized version tracking at 0.0.0 across all configuration files
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/release-please.yml | Defines the Release Please workflow with appropriate permissions for creating releases and PRs |
| release-please-config.json | Configures release-please with the "Fig" package name, changelog sections, and version bump behavior |
| .release-please-manifest.json | Initializes the release manifest with version 0.0.0 |
| version.txt | Tracks the current version (0.0.0) for the simple release type |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Configure release-please GitHub Action to automate versioning and changelog generation based on Conventional Commits. Uses the simple release type to track versions via version.txt and generates CHANGELOG.md automatically.
When commits are pushed to main, release-please will create a Release PR with version bumps and changelog updates. Merging the Release PR creates a GitHub Release with the appropriate version tag.
Closes #34