Skip to content

Latest commit

 

History

History
173 lines (104 loc) · 10 KB

CONTRIBUTING.md

File metadata and controls

173 lines (104 loc) · 10 KB

How to contribute

Become one of the contributors to this project! We thrive to build a welcoming and open community for anyone who wants to use the project or contribute to it. There are just a few small guidelines you need to follow. To help us create a safe and positive community experience for all, we require all participants to adhere to the Code of Conduct.

Table of contents

Become a contributor

You can contribute to this project in several ways. Here are some examples:

  • Contribute to the Ansible modules for Dell PowerStore documentation and codebase.
  • Report and triage bugs.
  • Feature requests.
  • Write technical documentation and blog posts, for users and contributors.
  • Help others by answering questions about this project.

Submitting issues

All issues related to Ansible modules for Dell PowerStore, regardless of the service/repository the issue belongs to (see table above), should be submitted here. Issues will be triaged and labels will be used to indicate the type of issue. This section outlines the types of issues that can be submitted.

Report bugs

We aim to track and document everything related to Ansible modules for Dell PowerStore via the Issues page. The code and documentation are released with no warranties or SLAs and are intended to be supported through a community driven process.

Before submitting a new issue, make sure someone hasn't already reported the problem. Look through the existing issues for similar issues.

Report a bug by submitting a bug report. Make sure that you provide as much information as possible on how to reproduce the bug.

When opening a Bug please include this information to help with debugging:

  1. Version of relevant software: this software, Ansible, Python, SDK, etc.
  2. Details of the issue explaining the problem: what, when, where
  3. The expected outcome that was not met (if any)
  4. Supporting troubleshooting information. Note: Do not provide private company information that could compromise your company's security.

An Issue must be created before submitting any pull request. Any pull request that is created should be linked to an Issue.

Feature request

If you have an idea of how to improve this project, submit a feature request.

Answering questions

If you have a question and you can't find the answer in the documentation or issues, the next step is to submit a question.

We'd love your help answering questions being asked by other Ansible modules for Dell PowerStore users.

Triage issues

Triage helps ensure that issues resolve quickly by:

  • Ensuring the issue's intent and purpose is conveyed precisely. This is necessary because it can be difficult for an issue to explain how an end user experiences a problem and what actions they took.
  • Giving a contributor the information they need before they commit to resolving an issue.
  • Lowering the issue count by preventing duplicate issues.
  • Streamlining the development process by preventing duplicate discussions.

If you don't have the knowledge or time to code, consider helping with issue triage. The Ansible modules for Dell PowerStore community will thank you for saving them time by spending some of yours.

Read more about the ways you can Triage issues.

Your first contribution

Unsure where to begin contributing? Start by browsing issues labeled beginner friendly or help wanted.

  • Beginner-friendly issues are generally straightforward to complete.
  • Help wanted issues are problems we would like the community to help us with regardless of complexity.

When you're ready to contribute, it's time to create a pull request.

Branching

Signing your commits

We require that developers sign off their commits to certify that they have permission to contribute the code in a pull request. This way of certifying is commonly known as the Developer Certificate of Origin (DCO). We encourage all contributors to read the DCO text before signing a commit and making contributions.

GitHub will prevent a pull request from being merged if there are any unsigned commits.

Signing a commit

GPG (GNU Privacy Guard) will be used to sign commits. Follow the instructions here to create a GPG key and configure your GitHub account to use that key.

Make sure you have your user name and e-mail set. This will be required for your signed commit to be properly verified. Check this references:

Once Git and your GitHub account have been properly configured, you can add the -S flag to the git commits:

$ git commit -S -m your commit message
# Creates a signed commit

Commit message format

Ansible modules for Dell PowerStore uses the guidelines for commit messages outlined in How to Write a Git Commit Message

Pull requests

If this is your first time contributing to an open-source project on GitHub, make sure you read about Creating a pull request.

A pull request must always link to at least one GitHub issue. If that is not the case, create a GitHub issue and link it.

To increase the chance of having your pull request accepted, make sure your pull request follows these guidelines:

  • Title and description matches the implementation.
  • Commits within the pull request follow the formatting guidelines.
  • The pull request closes one related issue.
  • The pull request contains necessary tests that verify the intended behavior.
  • If your pull request has conflicts, rebase your branch onto the main branch.

If the pull request fixes a bug:

  • The pull request description must include Fixes #<issue number>.
  • To avoid regressions, the pull request should include tests that replicate the fixed bug.

The team squashes all commits into one when we accept a pull request. The title of the pull request becomes the subject line of the squashed commit message. We still encourage contributors to write informative commit messages, as they becomes a part of the Git commit body.

We use the pull request title when we generate change logs for releases. As such, we strive to make the title as informative as possible.

Make sure that the title for your pull request uses the same format as the subject line in the commit message.

Quality gates for pull requests

GitHub Actions are used to enforce quality gates when a pull request is created or when any commit is made to the pull request. These GitHub Actions enforce our minimum code quality requirement for any code that get checked into the repository. If any of the quality gates fail, it is expected that the contributor will look into the check log, understand the problem and resolve the issue. If help is needed, please feel free to reach out the maintainers of the project for support.

Code sanitization

GitHub action that analyzes source code to flag ansible sanity errors and runs Unit tests.

Code reviews

All submissions, including submissions by project members, require review. We use GitHub pull requests for this purpose. Consult GitHub Help for more information on using pull requests.

A pull request must satisfy following for it to be merged:

  • A pull request will require at least 2 maintainer approvals.
  • Maintainers must perform a review to ensure the changes adhere to guidelines laid out in this document.
  • If any commits are made after the PR has been approved, the PR approval will automatically be removed and the above process must happen again.

Code style

Ensure the added code has the required documenation, examples and unit tests.

Sanity

Run ansible-test sanity --docker default on your code to ensure sanity. Ensure the code does not have any Andersson script violations and not break any existing unit test workflows.

TODOs in the code

We don't like TODOs in the code or documentation. It is really best if you sort out all issues you can see with the changes before we check the changes in.