From d02d821f84f9020abb6aa8c5758f0e72b9f47f6a Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 19 Apr 2025 16:20:28 -0700 Subject: [PATCH] Change multiline comment --- .github/workflows/pr-bot.yml | 25 ++++++++++--------------- 1 file changed, 10 insertions(+), 15 deletions(-) diff --git a/.github/workflows/pr-bot.yml b/.github/workflows/pr-bot.yml index bd9fed19b..88659a68a 100644 --- a/.github/workflows/pr-bot.yml +++ b/.github/workflows/pr-bot.yml @@ -76,21 +76,16 @@ jobs: return; } - const body = ` - Hello @${user}, - - Thank you very much for submitting this PR to us! - - This is what will happen next: - - 1. CI tests will run against your PR to ensure quality and consistency. - 2. Next, human contributors from paperless-ngx review your changes. - 3. Please address any issues that come up during the review as soon as you are able to. - 4. If accepted, your pull request will be merged into the \`dev\` branch and changes there will be tested further. - 5. Eventually, changes from you and other contributors will be merged into \`main\` and a new release will be made. - - You'll be hearing from us soon, and thank you again for contributing to our project. - `; + const body = + "Hello @" + user + ",\n\n" + + "Thank you very much for submitting this PR to us!\n\n" + + "This is what will happen next:\n\n" + + "1. CI tests will run against your PR to ensure quality and consistency.\n" + + "2. Next, human contributors from paperless-ngx review your changes.\n" + + "3. Please address any issues that come up during the review as soon as you are able to.\n" + + "4. If accepted, your pull request will be merged into the `dev` branch and changes there will be tested further.\n" + + "5. Eventually, changes from you and other contributors will be merged into `main` and a new release will be made.\n\n" + + "You'll be hearing from us soon, and thank you again for contributing to our project."; await github.rest.issues.createComment({ issue_number: pr.number,