Skip to content

Commit

Permalink
Merge pull request #95 from it-at-m/bug/fix-release-ci
Browse files Browse the repository at this point in the history
🐛 ci fix release action
  • Loading branch information
simonhir authored Feb 6, 2025
2 parents 54e05c2 + 83a78d9 commit a78d65b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/actions/release-maven/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,18 +65,18 @@ runs:
- name: Push changes to new branch
shell: bash
run: |
git checkout -b ${{ github.module }}-version-bump
git push --force origin ${{ github.module }}-version-bump
git checkout -b ${{ inputs.module }}-version-bump
git push --force origin ${{ inputs.module }}-version-bump
- name: Create pull request
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
script: |
const { repo, owner } = context.repo;
const pullResult = await github.rest.pulls.create({
title: 'chore: bump release version ${{ github.module }}',
title: 'chore: bump release version ${{ inputs.module }}',
owner,
repo,
head: '${{ github.module }}-version-bump',
head: '${{ inputs.module }}-version-bump',
base: '${{ github.ref_name }}',
body: [
'This PR is auto-generated'
Expand Down

0 comments on commit a78d65b

Please sign in to comment.