From 99221c1ae02956b101e0c9889eb0ec83aea3312e Mon Sep 17 00:00:00 2001 From: Hyro Date: Wed, 27 Jul 2022 08:18:12 +0200 Subject: [PATCH] fix(action): add github.token as default --- action.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index ffb022a..6c5dca7 100644 --- a/action.yml +++ b/action.yml @@ -11,7 +11,8 @@ inputs: description: "The Bun version to install." default: "latest" github-token: - description: "The github token secret can be passed in using {{ secrets.GITHUB_TOKEN }}" + description: "The github token secret can be passed in using ${{ secrets.GITHUB_TOKEN }}" + default: ${{ github.token }} misc-test-builds: description: "Install builds from https://github.com/oven-sh/misc-test-builds (not recommended!)" required: false @@ -22,4 +23,4 @@ outputs: runs: using: "node12" - main: "dist/index.js" \ No newline at end of file + main: "dist/index.js"