Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 1.76 KB

CONTRIBUTING.md

File metadata and controls

31 lines (20 loc) · 1.76 KB

Contributing Guidelines

Introduction

Thank you for considering contributing to action-json! It's people like you that make action-json such a great tool.

Code of Conduct

In order to ensure that the action-json community is welcoming to all, please review and abide by the Contributor Covenenant.

Commit Messages Policy

This repo is using commitlint with @commitlint/config-conventional config.

Basically, commit messages should follow this pattern:

Commit prefix Commit changes
build: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
chore: Other changes that don't modify src or test files
ci: Changes to our CI configuration files and scripts (example scopes: travis, circle, actions)
docs: Documentation only changes
style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
refactor: A code change that neither fixes a bug nor adds a feature
perf: A code change that improves performance
test: Adding missing tests or correcting existing tests

More info:

https://www.conventionalcommits.org/en/v1.0.0/