From e056a9147ef35de4f5bb18dddbab4d4ea2a4579f Mon Sep 17 00:00:00 2001 From: Alvin Huang <17609145+alvin-huang@users.noreply.github.com> Date: Fri, 5 Feb 2021 13:48:31 -0500 Subject: [PATCH] ci: escape backticks in github comment for website/ change check (#9711) --- .github/workflows/pr-file-checker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-file-checker.yml b/.github/workflows/pr-file-checker.yml index 008c7bf50..1c5bb8bc2 100644 --- a/.github/workflows/pr-file-checker.yml +++ b/.github/workflows/pr-file-checker.yml @@ -34,7 +34,7 @@ jobs: if [ -z "$changelog_files" ]; then # post PR comment to GitHub when no .changelog entry was found on PR echo "changelog-check: Did not find a .changelog entry, posting a reminder in the PR" - github_message="🤔 Double check that this PR does not require a changelog entry in the .changelog directory. [Reference](https://github.com/hashicorp/consul/pull/8387)" + github_message="🤔 Double check that this PR does not require a changelog entry in the \`.changelog\` directory. [Reference](https://github.com/hashicorp/consul/pull/8387)" curl -f -s -H "Authorization: token ${{ secrets.PR_COMMENT_TOKEN }}" \ -X POST \ -d "{ \"body\": \"${github_message}\"}" \ @@ -63,7 +63,7 @@ jobs: if [ -n "$website_files" ]; then # post PR comment to GitHub to check if a 'type/docs-cherrypick' label needs to be applied to the PR echo "website-check: Did not find a 'type/docs-cherrypick' label, posting a reminder in the PR" - github_message="🤔 This PR has changes in the `website/` directory but does not have a `type/docs-cherrypick` label. If the changes are for the next version, this can be ignored. If they are updates to current docs, attach the label to auto cherrypick to the `stable-website` branch after merging." + github_message="🤔 This PR has changes in the \`website/\` directory but does not have a \`type/docs-cherrypick\` label. If the changes are for the next version, this can be ignored. If they are updates to current docs, attach the label to auto cherrypick to the \`stable-website\` branch after merging." curl -f -s -H "Authorization: token ${{ secrets.PR_COMMENT_TOKEN }}" \ -X POST \ -d "{ \"body\": \"${github_message}\"}" \