From 362df7a7bdc3972bdbc1c6c7fd78b0aa255a8f67 Mon Sep 17 00:00:00 2001 From: fabidick22 Date: Sun, 26 Jun 2022 12:11:25 -0500 Subject: [PATCH] refactor: update inputs parameters --- action.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index d2f33ab..07fb5e1 100644 --- a/action.yml +++ b/action.yml @@ -2,12 +2,13 @@ name: 'PR Metadata Action' description: 'Adds pull request file changes as a comment to a newly opened PR' inputs: path: - description: 'Paths list' + description: 'Path' required: false - default: "." + default: "./" token: description: 'The token to use to access the GitHub API' - required: true + required: false + default: ${{ github.token }} runs: using: 'node12' main: 'dist/index.js' \ No newline at end of file