From 175387610497d2efe1903a7e4afd5f1904c0464d Mon Sep 17 00:00:00 2001 From: Alex Maltsev Date: Tue, 4 Jun 2024 14:44:40 +0300 Subject: [PATCH 1/2] Added pr checklist. --- .github/pull_request_template.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000000..5493919a247 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,31 @@ +### ๐Ÿ”ง Type of changes +- [ ] new bid adapter +- [ ] update bid adapter +- [ ] new feature +- [ ] new analytics adapter +- [ ] new module +- [ ] bugfix +- [ ] documentation +- [ ] configuration + +### โœจ What's the context? + +What's the context for the changes? Are there any + + +### ๐Ÿง  Rationale behind the change + +Why did you choose to make these changes? Were there any trade-offs you had to consider? + + +### ๐Ÿงช Test plan + +How do you know the changes are safe to ship to production? + + +### ๐ŸŽ Quality check + +- [ ] Are your changes following [our code style guidelines](https://github.com/prebid/prebid-server-java/blob/master/docs/developers/code-style.md)? +- [ ] Are there any breaking changes in your code? +- [ ] Does your test coverage exceed 90%? +- [ ] Are there any erroneous console logs, debuggers or leftover code in your changes? From 09bd8d9939115f63a1e501f26a92dbf7ec4af97d Mon Sep 17 00:00:00 2001 From: Alex Maltsev Date: Tue, 4 Jun 2024 14:58:42 +0300 Subject: [PATCH 2/2] Added pull request type option. --- .github/pull_request_template.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 5493919a247..f15985dc6a4 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -7,6 +7,7 @@ - [ ] bugfix - [ ] documentation - [ ] configuration +- [ ] tech debt (test coverage, refactorings, etc.) ### โœจ What's the context?