Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixes-issue-78 #80

Merged
merged 2 commits into from
Sep 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Contributing

Anyone is welcome to contribute by making a pull request
- Find an [issue](https://github.com/adrianyorke/robotframework-cookbook/issues) to work on
- Fork the project
- After you've cloned your fork of the project, you will need to make a branch
```
$ git checkout -b name-of-branch

```
- Make any changes, save your work, and make the necessary commits
- Example: fixes-issue-xxx or feature-issue-xxx
- Use present tense

```
$ git add .
$ git commit -m "fixes-issue-xxx"
$ git status

# Push the code to the branch you made
$ git push origin name-of-your-branch

```
- Once you've pushed your branch, don't forget to make a pull request into the `master` branch.


Loading