From e3b757b86ba4882ec7fcd52bfc75d85b8cac71fc Mon Sep 17 00:00:00 2001 From: Alexander Schranz Date: Wed, 25 Apr 2018 21:54:49 +0200 Subject: [PATCH] add github pr and issue templates --- .github/ISSUE_TEMPLATE.md | 26 ++++++++++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 38 ++++++++++++++++++++++++++++++++ Tests/travis.php.ini | 2 +- 3 files changed, 65 insertions(+), 1 deletion(-) create mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..e34550c --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,26 @@ +| Q | A +| --- | --- +| Bug? | no +| New Feature? | no +| Bundle Version | Specific version or SHA of a commit +| Sulu Version | Specific version or SHA of a commit +| Browser Version | Browser name and version + +#### Actual Behavior + +How does it behave at the moment? + +#### Expected Behavior + +What is the behavior you expect? + +#### Steps to Reproduce + +What are the steps to reproduce this bug? Please add code examples, +screenshots or links to GitHub repositories that reproduce the problem. + +#### Possible Solutions + +If you have already ideas how to solve the issue, add them here. +(remove this section if not needed) + diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..522dcc0 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,38 @@ +| Q | A +| --- | --- +| Bug fix? | no +| New feature? | no +| BC breaks? | no +| Deprecations? | no +| Fixed tickets | fixes #issuenum +| Related issues/PRs | #issuenum +| License | MIT + +#### What's in this PR? + +Explain the contents of the PR. + +#### Why? + +Which problem does the PR fix? (remove this section if you linked an issue above) + +#### Example Usage + +```php +// If you added new features, show examples of how to use them here +// (remove this section if not a new feature) + +$foo = new Foo(); + +// Now we can do +$foo->doSomething(); +``` + +#### BC Breaks/Deprecations + +Describe BC breaks/deprecations here. (remove this section if not needed) + +#### To Do + +- [ ] Create documentation + diff --git a/Tests/travis.php.ini b/Tests/travis.php.ini index cc60274..77c3d75 100644 --- a/Tests/travis.php.ini +++ b/Tests/travis.php.ini @@ -1,2 +1,2 @@ -memory_limit = 2048M +memory_limit = 4096M