From 017e97019ac11228f3f1b458da2c1c42ecf03a0b Mon Sep 17 00:00:00 2001 From: Scott Kingsley Clark Date: Wed, 6 Dec 2023 13:07:52 -0600 Subject: [PATCH] =?UTF-8?q?Add=20what=20we=E2=80=99re=20doing=20to=20top?= =?UTF-8?q?=20of=20steps=20and=20move=20some=20args=20around?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- action.yml | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/action.yml b/action.yml index f9ede6e..980a7c5 100644 --- a/action.yml +++ b/action.yml @@ -1,7 +1,9 @@ name: WordPress.org Text Replace description: 'A helpful GitHub action that will handle replacing version numbers across plugin files.' - author: Scott Kingsley Clark +branding: + icon: 'save' + color: green inputs: plugin_version: @@ -35,17 +37,21 @@ inputs: description: 'Plugin path' required: true -outputs: - changes_made: - description: Value is "true", if the repository changes were made from the replacement. Value is "false", if no changes were made. - -branding: - icon: 'save' - color: green - runs: using: "composite" steps: + - name: What are we doing? + run: | + echo plugin_version: ${{ inputs.plugin_version }} + echo plugin_version_constant_name: ${{ inputs.plugin_version_constant_name }} + echo tested_wp_version: ${{ inputs.tested_wp_version }} + echo tested_wp_version_constant_name: ${{ inputs.tested_wp_version_constant_name }} + echo minimum_wp_version: ${{ inputs.minimum_wp_version }} + echo minimum_wp_version_constant_name: ${{ inputs.minimum_wp_version_constant_name }} + echo minimum_php_version: ${{ inputs.minimum_php_version }} + echo minimum_php_version_constant_name: ${{ inputs.minimum_php_version_constant_name }} + echo plugin_file: ${{ inputs.plugin_file }} + echo plugin_path: ${{ inputs.plugin_path }} - name: Set up Node.js uses: actions/setup-node@v1 with: