From d3b8892da7dbee5ab280173c17c507011da77bc1 Mon Sep 17 00:00:00 2001 From: Doug Davis Date: Tue, 26 Apr 2022 14:38:38 -0400 Subject: [PATCH] Add some CLO stuff (#158) Signed-off-by: Doug Davis --- CONTRIBUTING.md | 23 +++++++++++++++++++++++ OWNERS | 4 ++++ 2 files changed, 27 insertions(+) create mode 100644 CONTRIBUTING.md create mode 100644 OWNERS diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..91885b9f --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,23 @@ +# Contributing to CloudEvents sdk-python + +:+1::tada: First off, thanks for taking the time to contribute! :tada::+1: + +We welcome contributions from the community! Please take some time to become +acquainted with the process before submitting a pull request. There are just +a few things to keep in mind. + +## Pull Requests + +Typically a pull request should relate to an existing issue. If you have +found a bug, want to add an improvement, or suggest an API change, please +create an issue before proceeding with a pull request. For very minor changes +such as typos in the documentation this isn't really necessary. + +### Sign your work + +Each PR must be signed. Be sure your `git` `user.name` and `user.email` are configured +then use the `--signoff` flag for your commits. + +```console +git commit --signoff +``` diff --git a/OWNERS b/OWNERS new file mode 100644 index 00000000..07a0f505 --- /dev/null +++ b/OWNERS @@ -0,0 +1,4 @@ +admins: + - grant + - denismakogon + - cumason123