Skip to content
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

[FEA] Create a PR template #751

Merged
merged 5 commits into from
Mar 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## Description
<!-- Provide a standalone description of changes in this PR. -->
<!-- Reference any issues closed by this PR with "closes #1234". -->
<!-- Note: The pull request title will be included in the CHANGELOG. -->

## Checklist
- [ ] I am familiar with the [Contributing Guidelines](https://github.com/nv-morpheus/Morpheus/blob/main/docs/source/developer_guide/contributing.md).
- [ ] New or existing tests cover these changes.
- [ ] The documentation is up to date with these changes.
3 changes: 2 additions & 1 deletion ci/scripts/copyright.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@
r"^[^ \/\n]*\.cache[^ \/\n]*\/.*$", # Ignore .cache folder
r"^[^ \/\n]*build[^ \/\n]*\/.*$", # Ignore any build*/ folder
r"^external\/.*$", # Ignore external
r"[^ \/\n]*docs/source/(_lib|_modules|_templates)/.*$"
r"[^ \/\n]*docs/source/(_lib|_modules|_templates)/.*$",
r"PULL_REQUEST_TEMPLATE.md" # Ignore the PR template
]

# this will break starting at year 10000, which is probably OK :)
Expand Down