Skip to content

Commit

Permalink
template
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyclenerd committed Aug 22, 2022
1 parent b833c28 commit 766796d
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions github-template.sh
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 766796d

Please sign in to comment.