From 5c13be5d346387c5e00a284844ae086d68c1263b Mon Sep 17 00:00:00 2001 From: Alex Collins Date: Thu, 19 Sep 2019 22:16:57 +0100 Subject: [PATCH] Adds pull request template (#113) --- .github/pull_request_template.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..eb14440e --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,18 @@ +* [ ] I have update the chart version in `Chart.yaml` following Semantic Versioning. +* [ ] All new values are backwards compatible and/or have sensible default. +* [ ] I have installed the chart myself and it works. + +E.g. for Argo Workflows: + +``` +helm install charts/argo +argo version +``` + +E.g. for Argo CD: + +``` +helm install charts/argo-cd --namespace argocd +kubectl port-forward svc/argocd-server -n argocd 8080:443 & +argocd version +```