From ea489407ffde46b5015d3c48fe70cfa6c696e569 Mon Sep 17 00:00:00 2001 From: Sangjoon Bob Lee Date: Tue, 24 Jun 2025 17:07:13 +0900 Subject: [PATCH 1/3] chore: add remaining issue and PR templates --- .github/ISSUE_TEMPLATE/bug_feature.md | 16 ++++++++++++++++ .github/ISSUE_TEMPLATE/release_checklist.md | 16 ++++++++++++++++ .../pull_request_template.md | 15 +++++++++++++++ 3 files changed, 47 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_feature.md create mode 100644 .github/ISSUE_TEMPLATE/release_checklist.md create mode 100644 .github/PULL_REQUEST_TEMPLATE/pull_request_template.md diff --git a/.github/ISSUE_TEMPLATE/bug_feature.md b/.github/ISSUE_TEMPLATE/bug_feature.md new file mode 100644 index 0000000..b3454de --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_feature.md @@ -0,0 +1,16 @@ +--- +name: Bug Report or Feature Request +about: Report a bug or suggest a new feature! +title: "" +labels: "" +assignees: "" +--- + +### Problem + + + +### Proposed solution diff --git a/.github/ISSUE_TEMPLATE/release_checklist.md b/.github/ISSUE_TEMPLATE/release_checklist.md new file mode 100644 index 0000000..00f8fba --- /dev/null +++ b/.github/ISSUE_TEMPLATE/release_checklist.md @@ -0,0 +1,16 @@ +--- +name: Release +about: Checklist and communication channel for GitHub release +title: "Ready for GitHub release" +labels: "release" +assignees: "" +--- + +### GitHub release checklist: + +- [ ] All PRs/issues attached to the release are merged. +- [ ] License information is verified as correct. If you are unsure, please comment below. +- [ ] Successfully run any tutorial examples or do functional testing with the latest Python version. +- [ ] Grammar and writing quality are checked (no typos). + +Please tag the maintainer (e.g., @username) in the comment here when you are ready for the GitHub release. Include any additional comments necessary, such as version information and details about the pre-release here: diff --git a/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md b/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md new file mode 100644 index 0000000..1099d86 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md @@ -0,0 +1,15 @@ +### What problem does this PR address? + + + +### What should the reviewer(s) do? + + + + From 06e4f9ebd7a47c40061f4092f1819dd18a3988cd Mon Sep 17 00:00:00 2001 From: Sangjoon Bob Lee Date: Tue, 24 Jun 2025 17:08:29 +0900 Subject: [PATCH 2/3] news: Add remaining Issue and PR templates to skpkg-system --- news/add-issue-temp.rst | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 news/add-issue-temp.rst diff --git a/news/add-issue-temp.rst b/news/add-issue-temp.rst new file mode 100644 index 0000000..663d734 --- /dev/null +++ b/news/add-issue-temp.rst @@ -0,0 +1,23 @@ +**Added:** + +* No news added: Add remaining Issue and PR templates to skpkg-system + +**Changed:** + +* + +**Deprecated:** + +* + +**Removed:** + +* + +**Fixed:** + +* + +**Security:** + +* From 833134cc7d22fc04b84186830e252268dda00aad Mon Sep 17 00:00:00 2001 From: Sangjoon Bob Lee Date: Tue, 24 Jun 2025 17:21:42 +0900 Subject: [PATCH 3/3] chore: also add LICENSE file --- LICENSE.rst | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 LICENSE.rst diff --git a/LICENSE.rst b/LICENSE.rst new file mode 100644 index 0000000..74fad87 --- /dev/null +++ b/LICENSE.rst @@ -0,0 +1,30 @@ +BSD 3-Clause License + +Copyright (c) 2025, The Trustees of Columbia University in the City of +New York. +All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.