|
| 1 | +# Pull Request Checklist |
| 2 | + |
| 3 | +## Overview |
| 4 | +- [ ] I have read and understood the [CONTRIBUTING.md](CONTRIBUTING.md) guidelines |
| 5 | +- [ ] My pull request has a descriptive title that accurately reflects the changes |
| 6 | +- [ ] I've included only files relevant to the changes described in the PR title and description |
| 7 | +- [ ] I've created a new branch in my forked repository for this contribution |
| 8 | + |
| 9 | +## Code Quality |
| 10 | +- [ ] My code is relevant to ServiceNow developers |
| 11 | +- [ ] My code snippets expand meaningfully on official ServiceNow documentation (if applicable) |
| 12 | +- [ ] I've disclosed use of ES2021 features (if applicable) |
| 13 | +- [ ] I've tested my code snippets in a ServiceNow environment (where possible) |
| 14 | + |
| 15 | +## Repository Structure Compliance |
| 16 | +- [ ] I've placed my code snippet(s) in one of the required top-level categories: |
| 17 | + - `Core ServiceNow APIs/` |
| 18 | + - `Server-Side Components/` |
| 19 | + - `Client-Side Components/` |
| 20 | + - `Modern Development/` |
| 21 | + - `Integration/` |
| 22 | + - `Specialized Areas/` |
| 23 | +- [ ] I've used appropriate sub-categories within the top-level categories |
| 24 | +- [ ] Each code snippet has its own folder with a descriptive name |
| 25 | + |
| 26 | +## Documentation |
| 27 | +- [ ] I've included a README.md file for each code snippet |
| 28 | +- [ ] The README.md includes: |
| 29 | + - Description of the code snippet functionality |
| 30 | + - Usage instructions or examples |
| 31 | + - Any prerequisites or dependencies |
| 32 | + - (Optional) Screenshots or diagrams if helpful |
| 33 | + |
| 34 | +## Restrictions |
| 35 | +- [ ] My PR does not include XML exports of ServiceNow records |
| 36 | +- [ ] My PR does not contain sensitive information (passwords, API keys, tokens) |
| 37 | +- [ ] My PR does not include changes that fall outside the described scope |
0 commit comments