Cicd/version bump on main #54
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 introduces a major overhaul of the project's CI/CD and release automation workflows, focusing on standardizing commit messages, automating semantic versioning and releases, and centralizing branch validation logic. Several legacy workflows have been removed and replaced with more maintainable, reusable, and industry-standard alternatives. The most important changes are grouped below:
Release & Tagging Workflow Modernization
.github/workflows/semantic-release.ymlto automate semantic versioning and release management using Semantic Release, replacing manual and legacy workflows. This includes automated changelog generation and integration with GitHub releases..releaserc.jsonto configure Semantic Release rules, branch settings, plugins, and changelog management for consistent release practices..github/workflows/release.yml,.github/workflows/tag-release.yml,.github/workflows/tag-cleanup.yml, and.github/workflows/commit_version_tag.yml, consolidating release and tagging logic into the new semantic release workflow. [1] [2] [3] [4]Commit Message Enforcement
.commitlintrc.jsonand.github/workflows/commitlint.ymlto enforce Conventional Commits for all PRs tomainanddev, ensuring standardized commit messages for automated versioning and changelog generation. [1] [2]