From 4749170961fd2156c647a5bbc70c35b79b972cff Mon Sep 17 00:00:00 2001 From: Ben Zhang Date: Thu, 2 Apr 2020 05:30:45 -0400 Subject: [PATCH] Update action.yml --- action.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/action.yml b/action.yml index e2697dac..074028a3 100644 --- a/action.yml +++ b/action.yml @@ -1,18 +1,18 @@ -name: 'Comment Pull Request' +name: 'Comment on Issue' branding: icon: 'message-circle' color: 'blue' -description: 'Comments a pull request with the provided message' +description: 'Comments on an issue with the provided message' inputs: message: - description: 'Message that should be printed in the pull request' + description: 'Comment message' required: true GITHUB_TOKEN: - description: 'Github token of the repository (automatically created by Github)' + description: 'Github token of the repository' required: true runs: using: 'docker' image: 'Dockerfile' args: - ${{ inputs.message }} - - ${{ inputs.GITHUB_TOKEN }} \ No newline at end of file + - ${{ inputs.GITHUB_TOKEN }}