diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 0000000..dfb682e --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,34 @@ +## How to Contribute to This Project + +#### **Did You Find a Bug?** + + * **Ensure the bug was not already reported** by searching on GitHub under [issues][issues]. + * If you're unable to find an open issue addressing the problem, [open a new one][new-issue]. Be sure to include a **title and clear description**, as much relevant information as possible. + +#### **Did You Write a Patch That Fixes a Bug?** + + * Open a new GitHub pull request with the patch. + 1. Fork this project + 1. Create your feature branch: `git checkout -b my-new-feature` + 1. Commit your changes: `git commit -am '$MESSAGE'` (read more in **Naming** section) + 1. Push to the branch: `git push origin my-new-feature` + 1. Submit a pull request + * Ensure the PR description clearly describes the problem and solution. Include the relevant issue number if applicable. + +#### Naming +* **Commig message**. + * Please use following commit message scheme: `#ISSUE_NUMBER | ISSUE DESCRIPTION`, + * Example: `#1 | Launcher does not initialize when navigating from desktop` + +#### **Do You Intend to Add a New Feature or Change an Existing One?** + + * Suggest your change as a new [issue][new-issue] using the appropriate labels **BEFORE** you start writing code. + +Thanks for contributing! + + + +[//]: # + +[issues]: //github.com/alan-null/sc-ext/issues +[new-issue]: //github.com/alan-null/sc-ext/issues/new diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..4930670 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,13 @@ +### Steps to Reproduce the Problem + 1. + 1. + 1. + +### Expected Behavior +... + +### Actual Behavior +... + +### Specifications +Sitecore version: X.X (revision YYYYY) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..f488443 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,9 @@ +Issue Fixed # + +## Proposed Changes + + - + - + - + +@alan-null