Skip to content

Latest commit

 

History

History
77 lines (46 loc) · 1.55 KB

CONTRIBUTING.md

File metadata and controls

77 lines (46 loc) · 1.55 KB

Contributing to gethired-base

Here are a few guidelines that will help you along the way.

Issues

Before creating issues please

  • Read the documentation.
  • Search for duplicates.
  • Make sure you're following the templates, if you don't see a template for your type of issue feel free to create a feature issue for it.

At the moment you're creating an issue please

  • Make sure you're following the issues naming standard

Issues naming standard

[Issue type] [Issue name]

Example

Bug Report - Contribution Guideline
Issue types
  • Bug Report

  • Feature Request

  • Contribution Guideline = Issue name

Branches

Branches naming standard

[Type]-[Issue ID]

Example

git checkout -b feature-1
git checkout -b hotfix-1
  • feature = Issue type
  • 1 = Issue ID

Commits

Commits naming standard

<type>[optional scope]: <description>

[optional body]

[optional footer(s)]

Example

git commit -m 'feat: Added logger class to use a logger service'
  • Type Name - feat
  • Description - Added logger class to use a logger service

More info: Conventional Commits

Pull Requests

Before creating a pull request please