summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean McGivern <sean@gitlab.com>2017-04-27 11:59:43 +0100
committerSean McGivern <sean@gitlab.com>2017-04-27 11:59:43 +0100
commit4da39064ab0e3d88924a51ee36df23613ae4797b (patch)
treee82c06527fa984c74d6d3a79623f48d325a43d73
parent2df748aa71d6c636c82ed2a0a8dde8ebf6bfc7f2 (diff)
downloadgitlab-ce-fix-issue-template-expansion.tar.gz
Fix checks markup in bug templatefix-issue-template-expansion
Triple backticks aren't allowed inside <details> elements, so add an explicit <pre> instead.
-rw-r--r--.gitlab/issue_templates/Bug.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/.gitlab/issue_templates/Bug.md b/.gitlab/issue_templates/Bug.md
index 6bb21e6a3af..241d90a204b 100644
--- a/.gitlab/issue_templates/Bug.md
+++ b/.gitlab/issue_templates/Bug.md
@@ -26,6 +26,7 @@ logs, and code as it's very hard to read otherwise.)
#### Results of GitLab environment info
<details>
+<pre>
(For installations with omnibus-gitlab package run and paste the output of:
`sudo gitlab-rake gitlab:env:info`)
@@ -33,11 +34,13 @@ logs, and code as it's very hard to read otherwise.)
(For installations from source run and paste the output of:
`sudo -u git -H bundle exec rake gitlab:env:info RAILS_ENV=production`)
+</pre>
</details>
#### Results of GitLab application Check
<details>
+<pre>
(For installations with omnibus-gitlab package run and paste the output of:
`sudo gitlab-rake gitlab:check SANITIZE=true`)
@@ -47,6 +50,7 @@ logs, and code as it's very hard to read otherwise.)
(we will only investigate if the tests are passing)
+</pre>
</details>
### Possible fixes