Skip to content

Latest commit

 

History

History
63 lines (41 loc) · 2.55 KB

CONTRIBUTING.md

File metadata and controls

63 lines (41 loc) · 2.55 KB

Contribution Guidelines

Raising an Issue

If you raise an issue against this repository, please include as much information as possible to reproduce any bugs, or specific locations in the case of content errors.

Contributing code

To contribute code, please fork the repository and raise a pull request.

Ideally pull requests should be fairly granular and aim to solve one problem each. It would also be helpful if they linked to an issue. If the maintainers cannot understand why a pull request was raised, it will be rejected, so please explain why the changes need to be made (unless it is self-evident).

Merge responsibility

  • It is the responsibility of the reviewer to merge branches they have approved.
  • It is the responsibility of the author of the merge to ensure their merge is in a mergeable state.
  • It is the responsibility of the maintainers to ensure the merge process is unambiguous and automated where possible.

Branch naming

Branch names should be of the format:

aea-nnn-short-issue-description

Multiple branches are permitted for the same ticket.

Commit messages

Commit messages should be formatted as follows:

AEA-NNN Summary of changes

Longer description of changes if explaining rationale is necessary,
limited to 80 columns and spanning as many lines as you need.

Commits from a pull request get squashed into a single commit on merge, using the pull request title as the commit message. Please format your pull request title using tags from ESLint Convention as follows:

Tag: [AEA-NNNN] - Short description

Tag can be one of:

  • Fix - for a bug fix. (Patch release)
  • Update - either for a backwards-compatible enhancement or for a rule change that adds reported problems. (Patch release)
  • New - implemented a new feature. (Minor release)
  • Breaking - for a backwards-incompatible enhancement or feature. (Major release)
  • Docs - changes to documentation only. (Patch release)
  • Build - changes to build process only. (No release)
  • Upgrade - for a dependency upgrade. (Patch release)
  • Chore - for refactoring, adding tests, etc. (anything that isn't user-facing). (Patch release)

Correct tagging is necessary for our automated versioning and release process (Release).

Changelog

Release changelogs are generated from the titles of pull requests merged into the main branch. Please ensure that your pull request title is sufficiently descriptive of the changes made.