From 976871c998bf7923bd85620533a2e37599744491 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ricks?= Date: Fri, 7 Jul 2023 10:15:46 +0200 Subject: [PATCH] Fix: Fix fetching commits for conventional commits action The remote was missing from the fetch statement. --- conventional-commits/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conventional-commits/action.yml b/conventional-commits/action.yml index 48aa2f7a..c3589712 100644 --- a/conventional-commits/action.yml +++ b/conventional-commits/action.yml @@ -35,7 +35,7 @@ runs: # fetch commits from head ref. It stops at base ref because we have a # shallow repo. run: | - git fetch ${{ inputs.head-ref }} + git fetch origin ${{ inputs.head-ref }} shell: bash - name: Set up Python and Poetry uses: greenbone/actions/poetry@v2