From a76dd78be5945a272daf406bfeb0b6c1c1df36d3 Mon Sep 17 00:00:00 2001 From: Max Howell Date: Wed, 1 Mar 2023 04:38:09 -0500 Subject: [PATCH] fix: github-token default to `${{ github.token }}` (#152) Co-authored-by: Valentin Kiselev --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 4f960bfe..d40f24f0 100644 --- a/action.yml +++ b/action.yml @@ -5,7 +5,7 @@ author: 'Nick Merwin (Coveralls, Inc.)' inputs: github-token: description: 'Put secrets.GITHUB_TOKEN here' - required: true + default: ${{ github.token }} path-to-lcov: description: 'Path to lcov file' required: false