From f1c9d5a8f4566d309506ff7b1576f79fde0e86c9 Mon Sep 17 00:00:00 2001 From: Wayne Witzel III Date: Tue, 12 Sep 2017 09:56:35 -0400 Subject: [PATCH] Add PR template and tweak `make VERSION` output to be pastable --- .github/PULL_REQUEST_TEMPLATE.md | 39 ++++++++++++++++++++++++++++++++ Makefile | 4 ++-- 2 files changed, 41 insertions(+), 2 deletions(-) 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 0000000000..cab0f5a69b --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,39 @@ +##### SUMMARY + + + + +##### ISSUE TYPE + + - Feature Pull Request + - Bugfix Pull Request + - Docs Pull Request + +##### COMPONENT NAME + + - API + - UI + - Installer + +##### AWX VERSION + +``` + +``` + + +##### ADDITIONAL INFORMATION + + + +``` + +``` diff --git a/Makefile b/Makefile index ec3d5db8a1..28c174f832 100644 --- a/Makefile +++ b/Makefile @@ -606,5 +606,5 @@ psql-container: docker run -it --net tools_default --rm postgres:9.4.1 sh -c 'exec psql -h "postgres" -p "5432" -U postgres' VERSION: - echo $(VERSION_TARGET) > $@ - + @echo $(VERSION_TARGET) > $@ + @echo "awx: $(VERSION_TARGET)"