Skip to content

Commit 383797c

Browse files
committed
Add info about contributing
1 parent 96b7439 commit 383797c

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

README.md

+15-3
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,25 @@ Optional flags:
5858

5959
## Development
6060

61-
When adding new functionality, please also add corresponding tests.
61+
Pull requests are welcome. If you're adding a new feature, please [submit an issue](https://github.com/honeybadger-io/cli/issues/new) as a preliminary step; that way you can be (moderately) sure that your pull request will be accepted.
62+
63+
When adding or changing functionality, please also add or update corresponding tests.
6264

6365
To run tests locally:
66+
6467
```bash
6568
go test ./...
6669
```
6770

71+
### To contribute your code:
72+
73+
1. Fork it.
74+
1. Create a topic branch `git checkout -b my_branch`
75+
1. Make your changes and add an entry to the [CHANGELOG](CHANGELOG.md).
76+
1. Commit your changes `git commit -am "Boom"`
77+
1. Push to your branch `git push origin my_branch`
78+
1. Send a [pull request](https://github.com/honeybadger-io/cli/pulls)
79+
6880
### Releasing
6981

7082
To publish a new release:
@@ -75,7 +87,7 @@ To publish a new release:
7587
git push origin v1.0.0
7688
```
7789

78-
2. The release workflow will automatically:
90+
1. The release workflow will automatically:
7991
- Build binaries for multiple platforms (Linux, macOS, Windows)
8092
- Create a GitHub release with the binaries
8193
- Generate a changelog from commit messages
@@ -86,4 +98,4 @@ Note: Commits with messages containing `[skip ci]` will skip the test workflow,
8698

8799
## License
88100

89-
MIT License
101+
MIT License. See the [LICENSE](https://raw.githubusercontent.com/honeybadger-io/cli/master/LICENSE) file in this repository for details.

0 commit comments

Comments
 (0)