From 98a78628c4fe5ea95e7a4f4e1cc2e4fceee2c0ce Mon Sep 17 00:00:00 2001 From: ankit01ojha Date: Fri, 10 Mar 2017 21:43:32 +0530 Subject: [PATCH] Add issue template, move PR template to .github Closes: https://github.com/projectatomic/rpm-ostree/issues/673 Closes: #674 Approved by: cgwalters --- .github/ISSUE_TEMPLATE | 28 +++++++++++++++++++ .../PULL_REQUEST_TEMPLATE | 0 2 files changed, 28 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE rename PULL_REQUEST_TEMPLATE => .github/PULL_REQUEST_TEMPLATE (100%) diff --git a/.github/ISSUE_TEMPLATE b/.github/ISSUE_TEMPLATE new file mode 100644 index 00000000..e1271783 --- /dev/null +++ b/.github/ISSUE_TEMPLATE @@ -0,0 +1,28 @@ +** Host system details ** + +Provide the output of `rpm-ostree status`. + +** Expected vs actual behavior ** + +``` +# rpm-ostree install somepackage +error: installing somepackage: encountered some an error +``` + +Expected: + +``` +# rpm-ostree install foo +... +Success! +``` + +**Steps to reproduce it** + +Provide any additional data that may help debug this - which specific version of +an RPM is in the repo, or any host system configuration. + +**Would you like to work on the issue?** + +Please let us know if you can work on it or the issue should be assigned to +someone else. diff --git a/PULL_REQUEST_TEMPLATE b/.github/PULL_REQUEST_TEMPLATE similarity index 100% rename from PULL_REQUEST_TEMPLATE rename to .github/PULL_REQUEST_TEMPLATE