From 4c5234f3671efda6bd388cfcadca438af4045273 Mon Sep 17 00:00:00 2001 From: Dr Maxim Orlovsky Date: Tue, 27 Dec 2022 20:10:08 +0100 Subject: [PATCH] Remove unnecessary github tempaltes --- .github/ISSUE_TEMPLATE/bug_report.md | 45 ------------------- .../pull_request_template.md | 23 ---------- 2 files changed, 68 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md delete mode 100644 .github/PULL_REQUEST_TEMPLATE/pull_request_template.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 5f5c030..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -name: Bug report -about: Let's improve software together -title: '' -labels: bug -assignees: dr-orlovsky - ---- - -**Checklist** -- [ ] Make sure you are using the latest code (`git checkout master && git pull origin`) -- [ ] Compile only with rust nightly: `rustup default nightly && rustup update nightly && cargo test --all --all-features -v` -- [ ] Try to do `cargo update` -- [ ] Try to remove `target` directory - -**Classify the bug** -Put `x` in the boxes below: -- [ ] Build issue -- [ ] Test failing -- [ ] Runtime panic -- [ ] Incorrect results -- [ ] Unexpected/undocumented behaviour / - -**Describe the problem** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: -1. Operating system -2. Rust compiler version -3. Did you - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Logs** -Please copy and paste content of `rustup default nightly && cargo test --all --all-features -v` in a block below right after "console" line: -```console -``` - -**Additional context** -Add any other context about the problem here. - -**Other links** -Please provide links and references to the affected repositories, code samples etc. diff --git a/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md b/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md deleted file mode 100644 index 7802b8c..0000000 --- a/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md +++ /dev/null @@ -1,23 +0,0 @@ -Closes # - -## Checklist -- [ ] Must pass CI, i.e. - - tests - - doc tests - - formatting lints -- [ ] Must increase test coverage, i.e. all new features must be covered by tests. Use [Codecov](https://codecov.io/gh/LNP-BP/rust-amplify) to navigate the code and see which parts lack coverage. - -## Requirements - -Please do not introduce new dependencies and compiler feature requirements without good rationale. PRs adding new non-dev dependencies are likely to be rejected. - -## Pull request changes: -* -* -* - -## Rationale -* -* - -Request for review: @dr_orlovsky