From 3116829a9b8f5a5caf1d352eb209ccc7f4042b22 Mon Sep 17 00:00:00 2001 From: Chad Schulz Date: Tue, 24 Sep 2019 10:49:32 -0700 Subject: [PATCH] Add missing } to token example (#153) --- 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 d441949f..166d310a 100644 --- a/packages/github/README.md +++ b/packages/github/README.md @@ -12,7 +12,7 @@ const core = require('@actions/core'); // 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');