From 209c25d05a79ec854f9dd49b1da820215e074ba2 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Sat, 14 Jun 2025 18:48:37 +0200 Subject: [PATCH] refactor(action): remove unused CLI setup steps - Eliminate redundant steps for CLIFF version reading, git-cliff installation, and git setup to streamline action configuration - Simplifies the workflow by focusing on essential functionality --- action.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/action.yml b/action.yml index baa0d07..f6ebb90 100644 --- a/action.yml +++ b/action.yml @@ -25,20 +25,3 @@ runs: id: detect run: | bash ${{ github.action_path }}/scripts/detect-version-change.sh - - - name: Read CLIFF_VERSION - shell: bash - id: cliff_version - run: bash ${{ github.action_path }}/scripts/read-cliff-version.sh - - - name: Install git-cliff - shell: bash - run: | - bash ${{ github.action_path }}/scripts/install-git-cliff.sh "${{ steps.cliff_version.outputs.version }}" - - - name: Set up git - shell: bash - run: | - bash ${{ github.action_path }}/scripts/setup-git.sh \ - "${{ inputs.author_name }}" \ - "${{ inputs.author_email }}"