summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2018-11-27 12:31:58 +0000
committerBundlerbot <bot@bundler.io>2018-11-27 12:31:58 +0000
commitaddee3dcbf5c00bebecc6f8dcfb2387e2e61e1f4 (patch)
treedd057355f3f931daff616f3ad07de21371490c58
parentcf45792213fadf97f7aa6464de8ebd79f09725d2 (diff)
parent19d1c46f13459c074319bf3d3a18f7a0a7c991e3 (diff)
downloadbundler-addee3dcbf5c00bebecc6f8dcfb2387e2e61e1f4.tar.gz
Merge #6811
6811: use '|' to preserve line breaks in welcome message r=colby-swandale a=colby-swandale ### What was the end-user problem that led to this PR? I used the wrong block in the welcome message YAML. `>` strips the new line breaks, we want to use `|` instead. Co-authored-by: Colby Swandale <me@colby.fyi>
-rw-r--r--.github/config.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/config.yml b/.github/config.yml
index d5b8037c11..2804985bfc 100644
--- a/.github/config.yml
+++ b/.github/config.yml
@@ -1,4 +1,4 @@
-newPRWelcomeComment: >
+newPRWelcomeComment: |
Thanks for opening a pull request and helping make Bundler better! Someone from the Bundler team will take a look at your pull request shortly and leave any feedback. Please make sure that your pull request has tests for any changes or added functionality.
We use Travis CI to test and make sure your change works functionally and uses acceptable conventions, you can review the current progress of Travis CI in the PR status window below.