Skip to content

Latest commit

 

History

History
189 lines (127 loc) · 8.64 KB

CONTRIBUTING.md

File metadata and controls

189 lines (127 loc) · 8.64 KB

Accord Project Contribution Guide

We'd love for you to contribute to our source code and to make Accord Project technology even better than it is today! Here are the guidelines we'd like you to follow:

Code of Conduct

Help us keep the Accord Project open and inclusive. Please read and follow our Code of Conduct.

Questions, Bugs, Features

Got a Question or Problem?

We want to keep GitHub Issues dedicated to bug reports and feature requests. Any general support questions are better directed towards a dedicated support platform, the best being the Accord Project Discord Channel.

Found an Issue or Bug?

If you find a bug in the source code or documentation, you can help us by submitting an issue to our respective GitHub repository. Even better, you can submit a Pull Request with a fix.

Please see the Submission Guidelines below.

Missing a Feature?

You can request a new feature by submitting an issue to the respective GitHub repository.

If you would like to implement a new feature then consider what kind of change it is:

  • Major Changes that you wish to contribute to the project should be discussed first in a GitHub Issue that clearly outlines the changes and benefits of the feature.
  • Small Changes can directly be crafted and submitted to the respective GitHub repository as a Pull Request. See the section about Pull Request Submission Guidelines, and for detailed information read the core development documentation.

Want a Doc Fix?

Should you have a suggestion for the documentation, you can open an issue and outline the problem or improvement you have - however, creating the doc fix yourself is much better!

If you want to help improve the docs, it's a good idea to let others know what you're working on to minimize duplication of effort. Create a new issue (or comment on a related existing one) to let others know what you're working on.

For large fixes, please build and test the documentation before submitting the PR to be sure you haven't accidentally introduced any layout or formatting issues. You should also make sure that your commit message follows the Commit Message Guidelines.

Issue Submission Guidelines

Before you submit your issue search the archive, maybe your question was already answered.

If your issue appears to be a bug, and hasn't been reported, open a new issue. Help us to maximize the effort we can spend fixing issues and adding new features, by not reporting duplicate issues.

The "new issue" form contains a number of prompts that you should fill out to make it easier to understand and categorize the issue.

If you get help, help others. Good karma rulez!

Pull Request Submission Guidelines

Before you submit your pull request consider the following guidelines:

  • First check whether there is an open Issue for what you will be working on. If there is not, open one up by going through these guidelines, including links to related Issues found for context.

  • Search for an open or closed Pull Request that relates to your submission. You don't want to duplicate effort, and you also want to include links to related Pull Requests found for context.

  • Create the development environment

  • Make your changes in a new git branch: techdocs

      git checkout -b name/issue-tracker/short-description master
    

    Name can be initials or GitHub username. An example of this could be:

      git checkout -b irmerk/i75/readme-typos master
    
  • Create your patch commit, including appropriate test cases.

  • Follow our Coding Rules.

  • Ensure you provide a DCO sign-off for your commits using the --signoff option of git commit. For more information see how this works.

  • If the changes affect public APIs, change or add relevant documentation.

  • Run the unit test suite, and ensure that all tests pass.

  • Commit your changes using a descriptive commit message that follows our commit message conventions. Adherence to the commit message conventions is required, because release notes are automatically generated from these messages.

      git commit -a --signoff
    

    Note: the optional commit -a command line option will automatically "add" and "rm" edited files.

  • Before creating the Pull Request, ensure your branch sits on top of master (as opposed to branch off a branch). This ensures the reviewer will need only minimal effort to integrate your work by fast-fowarding master:

      git rebase upstream/master
    
  • Last step before creating the Pull Request, package and run all tests a last time:

      npm run test
    
  • Push your branch to GitHub:

      git push origin name/issue-tracker/short-description
    
  • In GitHub, send a pull request to <REPOSITORY>:master by following our [pull request conventions][developers.pullrequest]. This will trigger the check of the Contributor License Agreement and the Travis integration.

  • If you find that the Travis integration has failed, look into the logs on Travis to find out if your changes caused test failures, the commit message was malformed, etc. If you find that the tests failed or times out for unrelated reasons, you can ping a team member so that the build can be restarted.

  • If we suggest changes, then:

    • Make the required updates.

    • Re-run the test suite to ensure tests are still passing.

    • Commit your changes to your branch (e.g. name/issue-tracker/short-description).

    • Push the changes to your GitHub repository (this will update your Pull Request).

      You can also amend the initial commits and force push them to the branch.

      git rebase master -i
      git push origin name/issue-tracker/short-description -f
      

      This is generally easier to follow, but separate commits are useful if the Pull Request contains iterations that might be interesting to see side-by-side.

That's it! Thank you for your contribution!

After your pull request is merged

After your pull request is merged, you can safely delete your branch and pull the changes from the main (upstream) repository:

  • Delete the remote branch on GitHub either through the GitHub web UI or your local shell as follows:

      git push origin --delete name/issue-tracker/short-description
    
  • Check out the master branch:

      git checkout master -f
    
  • Delete the local branch:

      git branch -D name/issue-tracker/short-description
    
  • Update your master with the latest upstream version:

      git checkout master
      git fetch --all --prune
      git rebase upstream/master
      git push origin master
    

License

Accord Project source code files are made available under the Apache License, Version 2.0.

Accord Project documentation files are made available under the Creative Commons Attribution 4.0 International License (CC-BY-4.0).