From 8b1e2771e5f5d1a0e4cb7cd990e92e39c8e7c4f4 Mon Sep 17 00:00:00 2001 From: bromnhub <241785706+bromnhub@users.noreply.github.com> Date: Sun, 7 Dec 2025 13:28:36 -0500 Subject: [PATCH] =?UTF-8?q?docs:=20=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BF=D0=BE=D0=B4=D1=80=D0=BE=D0=B1?= =?UTF-8?q?=D0=BD=D0=BE=D0=B3=D0=BE=20=D1=80=D1=83=D0=BA=D0=BE=D0=B2=D0=BE?= =?UTF-8?q?=D0=B4=D1=81=D1=82=D0=B2=D0=B0=20=D0=BF=D0=BE=20=D0=B2=D0=BD?= =?UTF-8?q?=D0=B5=D1=81=D0=B5=D0=BD=D0=B8=D1=8E=20=D0=B2=D0=BA=D0=BB=D0=B0?= =?UTF-8?q?=D0=B4=D0=B0=20(CONTRIBUTING.md)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/CONTRIBUTING.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 docs/CONTRIBUTING.md diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md new file mode 100644 index 0000000..6e952cb --- /dev/null +++ b/docs/CONTRIBUTING.md @@ -0,0 +1,32 @@ +# Contributing to Vapi Python Client SDK + +Thank you for considering contributing to the Vapi Python Client SDK! We welcome contributions from the community. + +## How to Contribute + +1. **Fork** the repository. +2. **Clone** your fork. +3. **Create a new branch** for your feature or fix: `git checkout -b feature/my-new-feature`. +4. **Make your changes**. +5. **Write tests** that cover your changes. +6. **Ensure all tests pass**. +7. **Commit your changes** using a descriptive commit message (e.g., `feat: Add support for new webhook event`). +8. **Push** your branch to your fork. +9. **Open a Pull Request** against the `main` branch of the original repository. + +## Commit Message Guidelines + +We follow the Conventional Commits specification. Please use the following prefixes: + +* `feat`: A new feature. +* `fix`: A bug fix. +* `docs`: Documentation only changes. +* `style`: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc). +* `refactor`: A code change that neither fixes a bug nor adds a feature. +* `perf`: A code change that improves performance. +* `test`: Adding missing tests or correcting existing tests. +* `build`: Changes that affect the build system or external dependencies. +* `ci`: Changes to our CI configuration files and scripts. +* `chore`: Other changes that don't modify src or test files. + +Thank you for helping us improve the Vapi Python Client SDK!