Feat/add installation script #11
Merged
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.
This pull request includes several updates across different files to improve the setup, build process, and functionality of the project. The most important changes include updates to the CI workflow, enhancements to the GoReleaser configuration, and improvements to the
cmd/root.go
command execution.CI Workflow Improvements:
.github/workflows/ci.yaml
: Added steps to installsyft
for software composition analysis. [1] [2]GoReleaser Configuration Enhancements:
.goreleaser.yaml
: Added Windows support and updatedldflags
to include version and commit information..goreleaser.yaml
: Switched changelog to use GitHub-native format.Command Execution Improvements:
cmd/root.go
: ChangedPersistentPreRun
toPersistentPreRunE
to handle errors and added validation for non-flag arguments.cmd/root.go
: Added logging for the generated commit message and cleaned up theexecuteCmd
function. [1] [2]Other Notable Changes:
.devcontainer/devcontainer.json
: Updated dev container features to includeshell-history
and removedazure-cli-persistence
.README.md
: Updated the project description to emphasize reducing cognitive load by automating commit message generation.These changes collectively enhance the development workflow, build process, and usability of the project.