From 565d0bbe1857d083f727b9b0ef2a583260c23fca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Mu=C3=B1oz=20Solera?= Date: Mon, 14 Oct 2019 07:59:46 -0700 Subject: [PATCH] Adding missing curly Brace in Usage example (#150) --- packages/github/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/github/README.md b/packages/github/README.md index fc108a23..8f2cbe39 100644 --- a/packages/github/README.md +++ b/packages/github/README.md @@ -13,7 +13,7 @@ const core = require('@actions/core'); async function run() { // This should be a token with access to your repository scoped in as a secret. // The YML workflow will need to set myToken with the GitHub Secret Token - // myToken: ${{ secrets.GITHUB_TOKEN } + // myToken: ${{ secrets.GITHUB_TOKEN }} // https://help.github.com/en/articles/virtual-environments-for-github-actions#github_token-secret const myToken = core.getInput('myToken');