diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000..6978ceb --- /dev/null +++ b/.clang-format @@ -0,0 +1,3 @@ +BasedOnStyle: Google +AlignConsecutiveAssignments: true +KeepEmptyLinesAtTheStartOfBlocks: true \ No newline at end of file diff --git a/index.js b/index.js index 4561df0..275855b 100644 --- a/index.js +++ b/index.js @@ -8,18 +8,17 @@ try { message: core.getInput('message') }; - const labelColor = core.getInput('labelColor'); - const color = core.getInput('color'); - const isError = core.getInput('isError'); - const namedLogo = core.getInput('namedLogo'); - const logoSvg = core.getInput('logoSvg'); - const logoColor = core.getInput('logoColor'); - const logoWidth = core.getInput('logoWidth'); + const labelColor = core.getInput('labelColor'); + const color = core.getInput('color'); + const isError = core.getInput('isError'); + const namedLogo = core.getInput('namedLogo'); + const logoSvg = core.getInput('logoSvg'); + const logoColor = core.getInput('logoColor'); + const logoWidth = core.getInput('logoWidth'); const logoPosition = core.getInput('logoPosition'); - const style = core.getInput('style'); + const style = core.getInput('style'); const cacheSeconds = core.getInput('cacheSeconds'); - if (labelColor != '') { description.labelColor = labelColor; } @@ -60,7 +59,7 @@ try { description.cacheSeconds = parseInt(cacheSeconds); } - let data = {files: {}}; + let data = {files: {}}; data.files[core.getInput('filename')] = { content: JSON.stringify(description) }; @@ -80,14 +79,8 @@ try { }, res => { let body = ''; - - res.on('data', data => { - body += data; - }); - - res.on('end', () => { - console.log('result:' + body); - }); + res.on('data', data => body += data); + res.on('end', () => console.log('result:' + body)); }); req.write(data);