Skip to content

Commit

Permalink
Fix: Fix fetching commits for conventional commits action
Browse files Browse the repository at this point in the history
The remote was missing from the fetch statement.
  • Loading branch information
bjoernricks committed Jul 7, 2023
1 parent 6175868 commit 976871c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conventional-commits/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 976871c

Please sign in to comment.