aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/go.opencensus.io/CONTRIBUTING.md
diff options
context:
space:
mode:
authorNathan Dench <ndenc2@gmail.com>2019-05-24 15:16:44 +1000
committerNathan Dench <ndenc2@gmail.com>2019-05-24 15:16:44 +1000
commit107c1cdb09c575aa2f61d97f48d8587eb6bada4c (patch)
treeca7d008643efc555c388baeaf1d986e0b6b3e28c /vendor/go.opencensus.io/CONTRIBUTING.md
parent844b5a68d8af4791755b8f0ad293cc99f5959183 (diff)
downloadterraform-provider-statuscake-107c1cdb09c575aa2f61d97f48d8587eb6bada4c.tar.gz
terraform-provider-statuscake-107c1cdb09c575aa2f61d97f48d8587eb6bada4c.tar.zst
terraform-provider-statuscake-107c1cdb09c575aa2f61d97f48d8587eb6bada4c.zip
Upgrade to 0.12
Diffstat (limited to 'vendor/go.opencensus.io/CONTRIBUTING.md')
-rw-r--r--vendor/go.opencensus.io/CONTRIBUTING.md56
1 files changed, 56 insertions, 0 deletions
diff --git a/vendor/go.opencensus.io/CONTRIBUTING.md b/vendor/go.opencensus.io/CONTRIBUTING.md
new file mode 100644
index 0000000..3f3aed3
--- /dev/null
+++ b/vendor/go.opencensus.io/CONTRIBUTING.md
@@ -0,0 +1,56 @@
1# How to contribute
2
3We'd love to accept your patches and contributions to this project. There are
4just a few small guidelines you need to follow.
5
6## Contributor License Agreement
7
8Contributions to this project must be accompanied by a Contributor License
9Agreement. You (or your employer) retain the copyright to your contribution,
10this simply gives us permission to use and redistribute your contributions as
11part of the project. Head over to <https://cla.developers.google.com/> to see
12your current agreements on file or to sign a new one.
13
14You generally only need to submit a CLA once, so if you've already submitted one
15(even if it was for a different project), you probably don't need to do it
16again.
17
18## Code reviews
19
20All submissions, including submissions by project members, require review. We
21use GitHub pull requests for this purpose. Consult [GitHub Help] for more
22information on using pull requests.
23
24[GitHub Help]: https://help.github.com/articles/about-pull-requests/
25
26## Instructions
27
28Fork the repo, checkout the upstream repo to your GOPATH by:
29
30```
31$ go get -d go.opencensus.io
32```
33
34Add your fork as an origin:
35
36```
37cd $(go env GOPATH)/src/go.opencensus.io
38git remote add fork git@github.com:YOUR_GITHUB_USERNAME/opencensus-go.git
39```
40
41Run tests:
42
43```
44$ go test ./...
45```
46
47Checkout a new branch, make modifications and push the branch to your fork:
48
49```
50$ git checkout -b feature
51# edit files
52$ git commit
53$ git push fork feature
54```
55
56Open a pull request against the main opencensus-go repo.