aboutsummaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorMax Campbell <maxc@maxc.in>2019-03-26 09:32:21 +0100
committerEmil Renner Berthing <esmil@labitat.dk>2019-04-01 15:45:44 +0200
commit0c19892158609d1eb64015f84e53eb5685c97441 (patch)
tree65606dba0d9defacafdd34bcb4f816db029bbc45 /CONTRIBUTING.md
parentaf333f0ec23a9784756a8b0e53a9896d7f61525f (diff)
downloadlabitat-ansible-0c19892158609d1eb64015f84e53eb5685c97441.tar.gz
labitat-ansible-0c19892158609d1eb64015f84e53eb5685c97441.tar.xz
labitat-ansible-0c19892158609d1eb64015f84e53eb5685c97441.zip
Add initial README.md and CONTRIBUTING.md
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md25
1 files changed, 25 insertions, 0 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000..d2f6952
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,25 @@
+# Contributing
+
+Before making a pull request
+1. Tidy your commits into the format below
+2. Deploy the playbook your self (if you have permissions)
+3. Does it work? If not, fix it and goto 1
+4. Create a pull request :)
+
+## Commit style
+
+Please create commits for each logical change,
+and use this format for your git commits
+
+```
+<role>: <task>: <change headline>
+
+< more descriptive text >
+```
+example:
+```
+jumbotron: irssi: cleanup .irssi/config
+
+Consistently indent everything with 2 spaces,
+and add a newline at end of file.
+```