-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(charts): update readme, contributor guide and github actions (#31)
Signed-off-by: shubham chaudhary <[email protected]>
- Loading branch information
Shubham Chaudhary
authored
Oct 13, 2021
1 parent
6a0fbba
commit 3653817
Showing
7 changed files
with
166 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Lines starting with '#' are comments. | ||
# Each line is a file pattern followed by one or more owners. | ||
|
||
# These owners will be the default owners for everything in the repo. | ||
* @ispeakc0de @ksatchit @uditgaurav |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!-- This form is for bug reports and feature requests ONLY! --> | ||
<!-- Thanks for filing an issue! Before hitting the button, please answer these questions.--> | ||
|
||
## Is this a BUG REPORT or FEATURE REQUEST? | ||
|
||
Choose one: BUG REPORT or FEATURE REQUEST | ||
|
||
<!-- | ||
If this is a BUG REPORT, please: | ||
- Fill in as much of the template below as you can. If you leave out information, we can't help you as well. | ||
If this is a FEATURE REQUEST, please: | ||
- Describe *in detail* the feature/behavior/change you'd like to see. | ||
In both cases, be ready for followup questions, and please respond in a timely | ||
manner. If we can't reproduce a bug or think a feature already exists, we | ||
might close your issue. If we're wrong, PLEASE feel free to reopen it and | ||
explain why. | ||
--> | ||
|
||
**What happened**: | ||
|
||
**What you expected to happen**: | ||
|
||
**How to reproduce it (as minimally and precisely as possible)**: | ||
|
||
**Anything else we need to know?**: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<!-- Thanks for sending a pull request! Here are some tips for you --> | ||
|
||
**What this PR does / why we need it**: | ||
|
||
**Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes # | ||
|
||
**Special notes for your reviewer**: | ||
|
||
**Checklist:** | ||
- [ ] Fixes #<issue number> | ||
- [ ] PR messages has document related information | ||
- [ ] Labelled this PR & related issue with `breaking-changes` tag | ||
- [ ] PR messages has breaking changes related information | ||
- [ ] Labelled this PR & related issue with `requires-upgrade` tag | ||
- [ ] PR messages has upgrade related information | ||
- [ ] Commit has unit tests | ||
- [ ] Commit has integration tests | ||
- [ ] E2E run Required for the changes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Configuration for probot-auto-merge - https://github.com/bobvanderlinden/probot-auto-merge | ||
|
||
reportStatus: true | ||
updateBranch: false | ||
deleteBranchAfterMerge: true | ||
mergeMethod: squash | ||
|
||
minApprovals: | ||
COLLABORATOR: 0 | ||
maxRequestedChanges: | ||
NONE: 0 | ||
blockingLabels: | ||
- DO NOT MERGE | ||
- WIP | ||
- blocked | ||
|
||
# Will merge whenever the above conditions are met, but also | ||
# the owner has approved or merge label was added. | ||
rules: | ||
- minApprovals: | ||
OWNER: 1 | ||
- requiredLabels: | ||
- merge |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# Contributing to Litmus-Go | ||
|
||
Litmus is an Apache 2.0 Licensed project and uses the standard GitHub pull requests process to review and accept contributions. | ||
|
||
There are several areas of Litmus that could use your help. For starters, you could help in improving the sections in this document by either creating a new issue describing the improvement or submitting a pull request to this repository. | ||
|
||
- If you are a first-time contributor, please see [Steps to Contribute](#steps-to-contribute). | ||
- If you would like to suggest new tests to be added to litmus, please go ahead and [create a new issue](https://github.com/litmuschaos/litmus/issues/new) describing your test. All you need to do is specify the workload type and the operations that you would like to perform on the workload. | ||
- If you would like to work on something more involved, please connect with the Litmus Contributors. | ||
- If you would like to make code contributions, all your commits should be signed with Developer Certificate of Origin. See [Sign your work](#sign-your-work). | ||
|
||
## Steps to Contribute | ||
|
||
- Find an issue to work on or create a new issue. The issues are maintained at [litmuschaos/litmus](https://github.com/litmuschaos/litmus/issues). You can pick up from a list of [good-first-issues](https://github.com/litmuschaos/litmus/labels/good%20first%20issue). | ||
- Claim your issue by commenting your intent to work on it to avoid duplication of efforts. | ||
- Fork the repository on GitHub. | ||
- Create a branch from where you want to base your work (usually master). | ||
- Make your changes. | ||
- Relevant coding style guidelines are the [Go Code Review Comments](https://code.google.com/p/go-wiki/wiki/CodeReviewComments) and the _Formatting and style_ section of Peter Bourgon's [Go: Best Practices for Production Environments](http://peter.bourgon.org/go-in-production/#formatting-and-style). | ||
- Commit your changes by making sure the commit messages convey the need and notes about the commit. | ||
- Push your changes to the branch in your fork of the repository. | ||
- Submit a pull request to the original repository. See [Pull Request checklist](#pull-request-checklist) | ||
|
||
## Pull Request Checklist | ||
|
||
- Rebase to the current master branch before submitting your pull request. | ||
- Commits should be as small as possible. Each commit should follow the checklist below: | ||
- For code changes, add tests relevant to the fixed bug or new feature | ||
- Pass the compile and tests - includes spell checks, formatting, etc | ||
- Commit header (first line) should convey what changed | ||
- Commit body should include details such as why the changes are required and how the proposed changes | ||
- DCO Signed | ||
|
||
- If your PR is not getting reviewed or you need a specific person to review it, please reach out to the Litmus contributors at the [Litmus slack channel](https://app.slack.com/client/T09NY5SBT/CNXNB0ZTN) | ||
|
||
## Sign your work | ||
|
||
We use the Developer Certificate of Origin (DCO) as an additional safeguard for the LitmusChaos project. This is a well established and widely used mechanism to assure that contributors have confirmed their right to license their contribution under the project's license. Please add a line to every git commit message: | ||
|
||
```sh | ||
Signed-off-by: Random J Developer <[email protected]> | ||
``` | ||
|
||
Use your real name (sorry, no pseudonyms or anonymous contributions). The email id should match the email id provided in your GitHub profile. | ||
If you set your `user.name` and `user.email` in git config, you can sign your commit automatically with `git commit -s`. | ||
|
||
You can also use git [aliases](https://git-scm.com/book/tr/v2/Git-Basics-Git-Aliases) like `git config --global alias.ci 'commit -s'`. Now you can commit with `git ci` and the commit will be signed. | ||
|
||
## Setting up your Development Environment | ||
|
||
This project is implemented using Go and uses the standard golang tools for development and build. In addition, this project heavily relies on Docker and Kubernetes. It is expected that the contributors. | ||
|
||
- are familiar with working with Go | ||
- are familiar with Docker containers | ||
- are familiar with Kubernetes and have access to a Kubernetes cluster or Minikube to test the changes. | ||
|
||
## Community | ||
|
||
The litmus community will have a monthly community sync-up on 3rd Wednesday 22.00-23.00IST / 18.30-19.30CEST | ||
- The community meeting details are available [here](https://hackmd.io/a4Zu_sH4TZGeih-xCimi3Q). Please feel free to join the community meeting. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters