From a1777f583844dbb2764204c10920cccfd539ed04 Mon Sep 17 00:00:00 2001 From: Dave Rolsky Date: Sun, 22 Dec 2024 15:02:38 -0600 Subject: [PATCH] Add first step to print all inputs --- action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/action.yml b/action.yml index e2d3fa9..c9fb18e 100644 --- a/action.yml +++ b/action.yml @@ -53,6 +53,10 @@ inputs: runs: using: composite steps: + - name: Show inputs + shell: bash + run: | + echo '${{ toJSON(inputs) }}' - name: Add this action's path to PATH shell: bash run: echo "${{ github.action_path }}" >> $GITHUB_PATH