First of all, thank you for taking time and interest to contribute to rede. We want you to have a great experience making your first contribution.
This contribution could be anything from a small fix to a typo in our documentation or a full feature.
If you would like to contribute, but don't know where to start, checkout the
issues that are labeled
good first issue
or
help wanted
.
We strive to keep rede an open and welcoming environment. Please read and follow our Community Code of Conduct.
If you find a bug in the source code, you can help us by submitting an issue or, even better, a pull request with a fix.
Before you submit a new issue please search the archive to see if your issue has already been reported. Avoiding duplicate issues helps us focus our time on fixing issues and adding new features.
If you think of a new feature that would make rede better for everyone, please start a discussion to propose the idea.
- In rede we have a commit message convention, but it's not enforced to contributors, we also enjoy seeing the different types of messages of different contributors. As long as it's explicative it's good.
- All authors of all commits in a Pull Request must abide by the Code of Conduct.
- We follow a linear commit history in our git repositories, a pull request cannot contain merge commits. To apply upstream changes to a branch, please rebase it to the base branch.
We follow the <type>/change
format for branch names, for example feat/new_body
or fix/wrong_header
. There is no strict requirement to follow this but this will
help with the automation of the release drafter.
First line of each commit message consists of a type and a subject:
<type>: <subject>
You can add more information in third line onward if you deem it useful.
<type>: <subject>
must not be longer that 100 characters.- type is required, must be in lower case and have one of the below values.
feat
: a new featurefix
: a fix to a bug in an existing feature- Other alternatives to this are:
bug
,bugfix
- Other alternatives to this are:
enhancement
: code change that neither fixes a bug nor adds a featuretest
: add missing tests or correct existing testsdoc
/docs
: a documentation only changechore
: some minor change that doesn't fall in any of the other types- You can also use
tyding
, see
- You can also use