Skip to content

Commit

Permalink
Add PR template and tweak make VERSION output to be pastable
Browse files Browse the repository at this point in the history
  • Loading branch information
wwitzel3 committed Sep 12, 2017
1 parent e00c650 commit f1c9d5a
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 2 deletions.
39 changes: 39 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
##### SUMMARY
<!--- Describe the change, including rationale and design decisions -->

<!---
If you are fixing an existing issue, please include "related #nnn" in your
commit message and your description; but you should still explain what
the change does.
-->

##### ISSUE TYPE
<!--- Pick one below and delete the rest: -->
- Feature Pull Request
- Bugfix Pull Request
- Docs Pull Request

##### COMPONENT NAME
<!--- Name of the module/plugin/module/task -->
- API
- UI
- Installer

##### AWX VERSION
<!--- Paste verbatim output from `make VERSION` between quotes below -->
```
```


##### ADDITIONAL INFORMATION
<!---
Include additional information to help people understand the change here.
For bugs that don't have a linked bug report, a step-by-step reproduction
of the problem is helpful.
-->

<!--- Paste verbatim command output below, e.g. before and after your change -->
```
```
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)"

0 comments on commit f1c9d5a

Please sign in to comment.