From db88d660cf5851246e3472ab5223ff089f0d0f0c Mon Sep 17 00:00:00 2001 From: Kirill Chikalin Date: Thu, 20 Mar 2025 08:27:28 +0300 Subject: [PATCH] text to message --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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