From 770cf14bde7c39cb2f9decf6bd955fb99c4ecd87 Mon Sep 17 00:00:00 2001 From: Jason Etcovitch Date: Tue, 20 Aug 2019 22:15:05 -0700 Subject: [PATCH] Highlight codeblocks in core/README.md --- packages/core/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/core/README.md b/packages/core/README.md index f9cc0c35..d60fc5c7 100644 --- a/packages/core/README.md +++ b/packages/core/README.md @@ -8,7 +8,7 @@ You can use this library to get inputs or set outputs: -``` +```js const core = require('@actions/core'); const myInput = core.getInput('inputName', { required: true }); @@ -22,7 +22,7 @@ core.setOutput('outputKey', 'outputVal'); You can also export variables and secrets for future steps. Variables get set in the environment automatically, while secrets must be scoped into the environment from a workflow using `${{ secrets.FOO }}`. Secrets will also be masked from the logs: -``` +```js const core = require('@actions/core'); // Do stuff @@ -45,7 +45,7 @@ core.addPath('pathToTool'); You should use this library to set the failing exit code for your action: -``` +```js const core = require('@actions/core'); try { @@ -62,7 +62,7 @@ catch (err) { Finally, this library provides some utilities for logging. Note that debug logging is hidden from the logs by default. This behavior can be toggled by enabling the [Step Debug Logs](../../docs/action-debugging.md#step-debug-logs). -``` +```js const core = require('@actions/core'); const myInput = core.getInput('input');