From a0ad35a83f68ff74b59d0ab2ddc1025b64962291 Mon Sep 17 00:00:00 2001 From: Ludovico Magnocavallo Date: Thu, 30 Sep 2021 12:39:50 +0200 Subject: [PATCH] Update CONTRIBUTING.md --- CONTRIBUTING.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9a3241a3..ea464268 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -7,9 +7,10 @@ The basic process is pretty simple: * Fork the Project * Create your Feature Branch
`git checkout -b feature/AmazingFeature` * Commit your Changes
`git commit -m 'Add some AmazingFeature` -* Push to the Branch
`git push origin feature/AmazingFeature` +* Make sure Terraform linting is ok (hint: `terraform format`) * Make sure tests pass!
`pytest # in the root folder` * Make sure any changes to variables and outputs are reflected in READMEs
`./tools/tfdoc.py [changed folder]` +* Push to the Branch
`git push origin feature/AmazingFeature` * Open a Pull Request When implementing your new feature, please follow our [core design principles](./MANIFESTO.md#core-design-principles).