From ec17f7896d669b21c3b34c9c9fd6946becd9687b Mon Sep 17 00:00:00 2001 From: Yuri Shkuro Date: Thu, 23 Jun 2022 21:57:24 -0400 Subject: [PATCH] Run prettier on scripts/get-changelog.js Signed-off-by: Yuri Shkuro --- scripts/get-changelog.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/get-changelog.js b/scripts/get-changelog.js index 9a969abc52..ce6e55fa90 100755 --- a/scripts/get-changelog.js +++ b/scripts/get-changelog.js @@ -28,7 +28,10 @@ const readFilePromise = promisify(readFile); const DOMAIN = 'https://github.com/'; const JAEGER_REPO = process.env.JAEGER_REPO || 'jaeger-ui'; -const URL_PARTS = [`${DOMAIN}jaegertracing/${JAEGER_REPO}/pulls?page=`, '&q=is%3Apr+is%3Amerged&utf8=%E2%9C%93']; +const URL_PARTS = [ + `${DOMAIN}jaegertracing/${JAEGER_REPO}/pulls?page=`, + '&q=is%3Apr+is%3Amerged&utf8=%E2%9C%93', +]; function getData(elm) { const title = elm.querySelector('[data-hovercard-type="pull_request"]').textContent;