diff --git a/action.yml b/action.yml index 9b2cf92..d4f1d84 100644 --- a/action.yml +++ b/action.yml @@ -1,7 +1,7 @@ name: 'Hello World' description: 'Greet someone' inputs: - text: + message: description: "Text" required: false default: "" @@ -62,7 +62,7 @@ runs: GITHUB_ACTION_PATH: ${{ github.action_path }} - name: Send message - run: sendMessage ${{ inputs.bot_token }} ${{ inputs.chat_id }} ${{ inputs.text }} + run: sendMessage ${{ inputs.bot_token }} ${{ inputs.chat_id }} ${{ inputs.message }} shell: bash - name: Run goodbye.sh