From 766796d3e4a1e73f6c27ea2154e3c26d1dc5adfb Mon Sep 17 00:00:00 2001 From: Nils K Date: Mon, 22 Aug 2022 23:27:28 +0200 Subject: [PATCH] template --- github-template.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 github-template.sh diff --git a/github-template.sh b/github-template.sh new file mode 100644 index 0000000..80d4260 --- /dev/null +++ b/github-template.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +# Add GitHub template stuff later + +cp -R ../template/.github/ISSUE_TEMPLATE .github/ && \ +git add . && \ +git commit -m "issue template" && echo "DONE" + +cp ../template/CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md && \ +git add . && \ +git commit -m "code of conduct" && echo "DONE" + +cp ../template/CONTRIBUTING.md . && \ +git add . && \ +git commit -m "contributing" && echo "DONE" + +cp ../template/.github/PULL_REQUEST_TEMPLATE.md .github/ && \ +git add . && \ +git commit -m "pull template" && echo "DONE" \ No newline at end of file