5 dépôts
Tools and specifications for extracting structured data from commit messages using predefined patterns.
Distinct from Catalog-Based Commit Coordinators: Distinct from Commit Coordinators: focuses on parsing the text of messages rather than orchestrating the commit process.
Explore 5 awesome GitHub repositories matching data & databases · Commit Message Parsers. Refine with filters or upvote what's useful.
This project is a Git commit standardization tool and semantic commit generator. It serves as an assistant to align code changes with semantic versioning by enforcing a consistent commit structure and formatting rules. The utility uses interactive prompts to gather user input, which it then validates against semantic categories and interpolates into predefined templates. This process automates the generation of standardized messages, ensuring that each commit follows a specific format to improve project history and traceability. The system also handles commit metadata structuring, including
Implements structured footer construction for tracking reviewers and referencing issue tickets.
This project provides a specification for a structured commit message convention that enables automated semantic versioning and changelog generation. It defines a standard grammar for commit messages to ensure project history is readable by both humans and machines. The specification maps specific commit types and breaking change indicators to version increment logic, allowing tools to automatically determine whether a patch, minor, or major release is required. This standardized format also facilitates the automatic production of human-readable release notes by parsing commit history. The c
Establishes a grammar that allows tools to parse commit types and scopes using regular expressions.
Conventional Changelog is a set of tools for automatically generating formatted release notes by parsing Git commit messages that follow a structured specification. It includes a commit message parser to transform raw strings into structured data, a changelog generator for producing release notes, and a commit linter to ensure messages adhere to specific conventions before they are merged. The project provides a system for semantic versioning automation, analyzing commit history to recommend the next version bump based on the types of changes recorded. It supports extensibility through config
Provides a commit linter to ensure messages follow a consistent format before they are merged.
Standard-version is a semantic versioning release automation tool and Git versioning manager. It calculates the next semantic version by parsing commit messages that follow the Conventional Commits specification and automates the process of updating project files and creating signed Git tags. The tool distinguishes itself by generating formatted changelogs automatically from commit history and providing a release process simulation to preview version bumps without modifying files or Git history. It supports pre-release version management for experimental builds and allows for manual version o
Parses commit messages following the Conventional Commits specification to generate automated changelogs.
Marks a commit with the feat type to indicate a minor-level new feature in the codebase.