docs: Refactor GOVERNANCE.md #65
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.
Description
Refactor GOVERNANCE.md by removing Operational Rules and Process, which will be moved into CONTRIBUTING.md via PR#61
Type of change
Please delete options that are not relevant.
Checklist:
Pull Request Title
This repository enforces Conventional Commits. Your PR title must follow
this format:
type: descriptionortype!: descriptionfor breaking changes.Types:
feat: A new featurefix: A bug fixdocs: Documentation only changesstyle: Changes that do not affect the meaning of the code (white-space,formatting, etc)
refactor: A code change that neither fixes a bug nor adds a featureperf: A code change that improves performancetest: Adding missing tests or correcting existing testschore: Changes to the build process or auxiliary tools and librariesBreaking Changes:
If your change is a breaking change (e.g., removing a field or file), you
must add
!before the colon in your title:type!: descriptionExamples:
feat: add new payment gatewayfix: resolve crash on checkoutdocs: update setup guidefeat!: remove deprecated buyer field from checkout