From 3153deb63fe666905dc697faf7d551f95448c83d Mon Sep 17 00:00:00 2001 From: Anmol Baranwal Date: Wed, 15 Nov 2023 23:07:11 +0530 Subject: [PATCH] chore: update metadata and make github token optional --- action.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 4f98189..c714f6f 100644 --- a/action.yml +++ b/action.yml @@ -5,18 +5,25 @@ inputs: label: description: 'Label to add to the current issue.' default: 'multiple issues' + required: false issueNumber: description: 'Include the previous issue number created by the author in the comment.' + required: false + default: 'true' comment: description: 'Custom text to add with or without the issue number in the comment.' default: '' + required: false close: description: 'Close the current issue if set to true.' + required: false gh-token: description: 'The GitHub token for authentication.' - required: true + default: ${{ github.token }} + required: false assign: description: 'The issues that are assigned to the author' + required: false runs: using: 'node16' main: 'dist/index.js'