Skip to content

Commit

Permalink
ci: fix CI that creates release titles (#59)
Browse files Browse the repository at this point in the history
It was using the wrong version name, which resulted in PRs with the
wrong name.
  • Loading branch information
serramatutu authored Nov 14, 2024
1 parent 68151d1 commit 85892cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changes/unreleased/Chore-20241114-150932.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
kind: Chore
body: Fix release PR action to use correct title for PR
time: 2024-11-14T15:09:32.92416+01:00
2 changes: 1 addition & 1 deletion .github/workflows/create-release-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4
with:
title: "version: ${{ steps.package-version.outputs.output }}"
title: "version: ${{ steps.package-version.outputs.version }}"
branch: release/${{ steps.package-version.outputs.version }}
commit-message: |
version: ${{ steps.package-version.outputs.version }}
Expand Down

0 comments on commit 85892cb

Please sign in to comment.