From bf024388c7982f12d70aa6746db876f7a9c63cbb Mon Sep 17 00:00:00 2001 From: Chris Houseknecht Date: Sun, 25 Sep 2016 23:08:52 -0400 Subject: [PATCH] Add pre-commit script and update AUTHORS --- AUTHORS | 18 +++++++++++------- pre-commit | 7 +++++++ 2 files changed, 18 insertions(+), 7 deletions(-) create mode 100755 pre-commit diff --git a/AUTHORS b/AUTHORS index 3c026e80..77bb7316 100644 --- a/AUTHORS +++ b/AUTHORS @@ -3,22 +3,26 @@ Ansible Container has been contribued to by the following authors: Chris Houseknecht Joshua "jag" Ginsberg -Matt Clay Shubham Minglani +Matt Clay Greg DeKoenigsberg Sandra Wills +Dusty Mabe Charlie Drage +Roderick Randolph chouseknecht -Will Thames Todd Barr -Arnaud Moret -Daniel Heitmann +Will Thames +Grzegorz Nosek Abhishek Pratap Singh +Daniel Heitmann +Arnaud Moret Evan Zeimet -Gerard Braad -Sidharth Surana -Andrea De Pirro Ali Asad Lotia Chrrrles Paul +Andrea De Pirro +Pierre-Louis Bonicoli Jeff Geerling Shea Stewart +Gerard Braad +Sidharth Surana diff --git a/pre-commit b/pre-commit new file mode 100755 index 00000000..604f46fd --- /dev/null +++ b/pre-commit @@ -0,0 +1,7 @@ +#!/bin/sh +# +# Copy this script to .git/hooks/pre-commit +# + +python update-authors.py > AUTHORS +git add AUTHORS