From 15ab86b01b8651e090bd56d182921d2c94c1faf8 Mon Sep 17 00:00:00 2001 From: peaceiris <30958501+peaceiris@users.noreply.github.com> Date: Sat, 7 Mar 2020 19:25:25 +0900 Subject: [PATCH] feat: set required to true for github_token --- action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 41872296..8cfb16ff 100644 --- a/action.yml +++ b/action.yml @@ -4,10 +4,11 @@ author: 'peaceiris' inputs: github_token: description: 'Auth token used to manage issues or pull requests' - default: ${{ github.token }} + required: true config_file: description: 'Path to action setting file' default: '.github/commenter.yml' + required: false runs: using: 'node12' main: 'lib/index.js'