-
Notifications
You must be signed in to change notification settings - Fork 4
docs: add contribution guide #109
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,79 @@ | ||
| name: 🐞 Bug | ||
| description: Report a bug or an issue you've found | ||
| title: "[Bug] <title>" | ||
| labels: ["bug"] | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| Thanks for taking the time to fill out this bug report! | ||
| - type: checkboxes | ||
| attributes: | ||
| label: Is this a new bug? | ||
| description: > | ||
| In other words: Is this an error, flaw, failure or fault? Please search issues to see if someone has already reported the bug you encountered. | ||
| options: | ||
| - label: I believe this is a new bug | ||
| required: true | ||
| - label: I have searched the existing issues, and I could not find an existing issue for this bug | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| attributes: | ||
| label: Current Behavior | ||
| description: A concise description of what you're experiencing. | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| attributes: | ||
| label: Expected Behavior | ||
| description: A concise description of what you expected to happen. | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| attributes: | ||
| label: Steps To Reproduce | ||
| description: Steps to reproduce the behavior. | ||
| placeholder: | | ||
| 1. In this environment... | ||
| 2. With this config... | ||
| 3. Run '...' | ||
| 4. See error... | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| attributes: | ||
| label: Environment | ||
| description: | | ||
| examples: | ||
| - **OS**: Ubuntu 20.04 | ||
| - **.NET Version**: dotnet 9.0 (`dotnet --version`) | ||
| - **SDK Name**: PayPal (If you are using this library as a dependency, please name the parent SDK) | ||
| value: | | ||
| - **OS**: | ||
| - **.NET Version**: | ||
| - **SDK Name**: | ||
| render: markdown | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: logs | ||
| attributes: | ||
| label: Relevant log output | ||
| description: | | ||
| If applicable, log output to help explain your problem. | ||
| render: shell | ||
| validations: | ||
| required: false | ||
|
|
||
| - type: textarea | ||
| attributes: | ||
| label: Additional Context | ||
| description: | | ||
| Links? References? Anything that will give us more context about the issue you are encountering! | ||
| validations: | ||
| required: false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,55 @@ | ||
| name: ✨ Feature | ||
| description: Propose a straightforward extension | ||
| title: "[Feature] <title>" | ||
| labels: ["enhancement"] | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| Thanks for taking the time to fill out this feature request! | ||
| - type: checkboxes | ||
| attributes: | ||
| label: Is this your first time submitting a feature request? | ||
| description: > | ||
| We want to make sure that features are distinct and discoverable, | ||
| so that other members of the community can find them and offer their thoughts. | ||
| Issues are the right place to request straightforward extensions of existing functionality. | ||
| options: | ||
| - label: I have searched the existing issues, and I could not find an existing issue for this feature | ||
| required: true | ||
| - label: I am requesting an extension of the existing functionality | ||
| - type: textarea | ||
| attributes: | ||
| label: Describe the feature | ||
| description: A clear and concise description of what you want to happen. | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| attributes: | ||
| label: Describe alternatives you've considered | ||
| description: | | ||
| A clear and concise description of any alternative solutions or features you've considered. | ||
| validations: | ||
| required: false | ||
| mrafnadeem-apimatic marked this conversation as resolved. | ||
| - type: textarea | ||
| attributes: | ||
| label: Who will this benefit? | ||
| description: | | ||
| What kind of use case will this feature be useful for? Please be specific and provide examples, this will help us prioritize properly. | ||
| validations: | ||
| required: false | ||
| asadali214 marked this conversation as resolved. | ||
| - type: input | ||
| attributes: | ||
| label: Are you interested in contributing this feature? | ||
| description: Let us know if you want to write some code, and how we can help. | ||
| validations: | ||
| required: false | ||
| - type: textarea | ||
| attributes: | ||
| label: Anything else? | ||
| description: | | ||
| Links? References? Anything that will give us more context about the feature you are suggesting! | ||
| validations: | ||
| required: false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,62 @@ | ||
| # Contributing to apimatic/core-lib-csharp | ||
|
|
||
| Thank you for your interest in contributing! 🎉 Your contributions help make this project better. We value open-source contributions to this library, please take a few minutes to review this guide before you start. | ||
|
|
||
| --- | ||
|
|
||
| ## 💡 How to Contribute | ||
|
|
||
| ### 📌 1. Reporting Issues | ||
|
|
||
| - Search existing issues before opening a new one. | ||
| - Use a **descriptive title** and provide clear steps to reproduce. | ||
| - Include relevant logs, screenshots, or error messages. | ||
|
|
||
| ### 🔧 2. Making Changes | ||
|
|
||
| #### Step 1: Create a Branch | ||
|
|
||
| - Create a new branch from `master`: | ||
| ```sh | ||
| git checkout -b your-feature-name | ||
| ``` | ||
|
|
||
| #### Step 2: Make Your Changes | ||
|
|
||
| - Follow the project's **coding standards**. | ||
| asadali214 marked this conversation as resolved. | ||
| - Add **unit tests** if applicable. | ||
| - Ensure your changes **do not break existing functionality**. | ||
|
|
||
| #### Step 3: Commit Changes | ||
|
|
||
| - Use clear and descriptive commit messages: | ||
| ```sh | ||
| git commit -m "feat: Add feature description" | ||
| ``` | ||
|
|
||
| #### Step 4: Push & Open a PR | ||
|
|
||
| - Push your branch: | ||
| ```sh | ||
| git push origin your-feature-name | ||
| ``` | ||
| - Open a **Pull Request (PR)** on GitHub: | ||
| - Provide a clear **description** of the changes. | ||
| - Mention related **issue numbers**. | ||
| - Request a **review** from maintainers. | ||
| mrafnadeem-apimatic marked this conversation as resolved. | ||
| - Make sure your changes clear all the **PR Checks**. | ||
|
|
||
| --- | ||
|
|
||
| ## 📜 License | ||
|
|
||
| By contributing, you agree that your contributions will be licensed under the project's [LICENSE](LICENSE). | ||
|
|
||
| --- | ||
|
|
||
| 💬 **Questions?** | ||
| If you need help, feel free to open issues, we will be happy to help. | ||
|
|
||
| Happy Coding! 🚀 | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.