WARNING: work in progress
Because building and testing whole metwork-framework is a long and difficult task, we use a specific branch integration
to
merge pull-requests. Every change is made by a pull-request on this branch and every change must be reviewed by a team member
to be accepted.
We use a mergify bot to merge pull-requests, so merging rules are clear and described in the .mergify.yml
file in the repository.
Nobody (including administrators) can't commit to the master
branch. So pull-requests are not accepted in the master
branch. The only way to commit code in this branch is to pass through the integration
branch.
When the whole framework is "stable", a team member will copy the integration
branch on the master
branch with a specific non-interactive script (we are thinking of a way to automatize this).
So the master
branch is always "behind" the integration
branch. But only for a few hours or (at worse) days.
FIXME
FIXME
We follow the semantic versionning specification.
Given a version number MAJOR.MINOR.PATCH
, we increment the:
MAJOR
version when we make incompatible API changes,MINOR
version when we add functionality in a backwards-compatible manner, andPATCH
version when we make backwards-compatible bug fixes.
Inspired by Angular project and conventional commits initiative, we have very precise rules over how our git commit messages can be formatted. This leads to more readable messages that are easy to follow when looking through the project history. But also, we use the git commit messages to generate the project changelog.
So we follow the conventional commits initiative specification.
Each commit message consists of a header
, a body
and a footer
. The header
has a special format that includes a type
,
a scope
and a description
. The commit message should be structured as follows:
<type>[optional scope]: <description>
<BLANK LINE>
[optional body]
<BLANK LINE>
[optional footer]
The commit message contains the following structural elements, to communicate intent to the consumers of the project:
fix
: a commit of the type fix patches a bug in your codebase (this correlates withPATCH
in semantic versioning).feat
: a commit of the type feat introduces a new feature to the codebase (this correlates withMINOR
in semantic versioning).BREAKING CHANGE
: a commit that has the textBREAKING CHANGE:
at the beginning of its optional body or footer section introduces a breaking API change (correlating withMAJOR
in semantic versioning). A breaking change can be part of commits of any type. e.g., afix:
,feat:
&chore:
types would all be valid, in addition to any other type. Others: commit types other than fix: and feat: are allowed, for example commitlint-config-conventional (based on the the Angular convention) recommends chore:, docs:, style:, refactor:, perf:, test:, and others. We also recommend improvement for commits that improve a current implementation without adding a new feature or fixing a bug. Notice these types are not mandated by the conventional commits specification, and have no implicit effect in semantic versioning (unless they include a BREAKING CHANGE, which is NOT recommended). A scope may be provided to a commit’s type, to provide additional contextual information and is contained within parenthesis, e.g., feat(parser): add ability to parse arrays.
feat: allow provided config object to extend other configs
BREAKING CHANGE: `extends` key in config file is now used for extending other config files
docs: correct spelling of CHANGELOG
feat(lang): added polish language
fix: minor typos in code
see the issue for details on the typos fixed
fixes issue #12
If the commit reverts a previous commit, it should begin with revert:
, followed by the header of the reverted commit.
In the body it should say: This reverts commit <hash>.
, where the hash
is the SHA of the commit being reverted.
Must be one of the following:
build
: Changes that affect the build or CI system (chore
is also accepted for compatibility)docs
: Documentation only changesfeat
: A new featurefix
: A bug fixperf
: A code change that improves performancerefactor
: A code change that neither fixes a bug nor adds a featurestyle
: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)test
: Adding missing tests or correcting existing tests
The scope is not used for the moment. Please don't use scopes in commit messages.
The description contains a succinct description of the change:
use the imperative, present tense: "change" not "changed" nor "changes"
don't capitalize the first letter
no dot (.) at the end
Just as in the subject, use the imperative, present tense: "change" not "changed" nor "changes". The body should include the motivation for the change and contrast this with previous behavior.
The footer should contain any information about Breaking Changes
and is also the place to reference GitHub issues
that this commit Closes.
Breaking Changes
should start with the word BREAKING CHANGE:
with a space or two newlines. The rest of the commit
message is then used for this.
We use a consistent labelling scheme inspired by sensible-github-labels.
Type: Bug
: it's about a bugType: Enhancement
: it's about a new featureType: Question
: it's just a questionType: Maintenance
: it's about a better way to implement an existing feature (refactor, performances improvement...)
Priority: Critical
: This should be dealt with ASAP. Not fixing this issue would be a serious error.Priority: High
: After critical issues are fixed, these should be dealt with before any further issues.Priority: Medium
: (implicit, does not exist as a label) This issue may be useful, and needs some attention.Priority: Low
: This issue can probably be picked up by anyone looking to contribute to the project, as an entry fix.
Status: Pending
: The issue is new, this is the triage status.Status: Closed
: The issue/pr is closed (because the corresponding change is merged or because the corresponding change was abandoned/rejected)Status: Accepted
: It's clear what the subject of the issue is about, what the resolution should be, and we want this :-)Status: Blocked
: There is another issue that needs to be resolved first, or a specific person is required to comment or reply to progress. There may also be some external blocker.Status: In Progress
: This issue is being worked on, and has someone assigned.Status: Review Needed
: The PR must be reviewed by a team member.Status: Revision Needed
: Submitter of PR needs to revise the PR related to the issue.
We have a bot to do some automatic labelling:
- When a pr is opended, it adds the
Status: Pending
label - When an issue is opened, it adds the
Status: Pending
label (if no otherStatus: *
label was given initialy) - When a pr is closed, it removes every
Status: *
labels and addsStatus: Closed
- When an issue is closed, it removes every
Status: *
labels and addsStatus: Closed
- When a pr is reopened, it removes the
Status: Closed
label and addsStatus: Review Needed
- When an issue is reopened, it removes the
Status: Closed
label and addsStatus: Pending
- When a new
Priority: *
label is set, oldPriority: *
labels are removed (if necessary) - When a new
Status: *
label is set, oldStatus: *
labels are removed (if necessary) - When a pr is not "good" (because of bad statuses for example), the label
Status: Revision Needed
is set - When a pr is "good" (statuses all green), the label
Status: Review Needed
is set
The MetWork community must follow the Code of Conduct described in this document.