Skip to content

Commit 0d8dac4

Browse files
committed
fix(pr): add fetch all
1 parent a85217b commit 0d8dac4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/create-pull-request.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ jobs:
3636
- name: Exrtact changelog
3737
shell: bash
3838
run: |
39-
CHANGELOG=$(./create-release-notes --from '${{ github.event.inputs.base }}' --group)
39+
git fetch --all
40+
CHANGELOG=$(./create-release-notes --from ${{ github.event.inputs.base }} --group)
4041
CHANGELOG="${CHANGELOG//'%'/'%25'}"
4142
CHANGELOG="${CHANGELOG//$'\n'/'%0A'}"
4243
CHANGELOG="${CHANGELOG//$'\r'/'%0D'}"

0 commit comments

Comments
 (0)