Skip to content

Commit

Permalink
fix(gha): use ready-to-use workflow for PR creation
Browse files Browse the repository at this point in the history
  • Loading branch information
mboskamp committed Oct 14, 2024
1 parent d271d1f commit dbfa279
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/bump-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,15 @@ jobs:
distribution: 'temurin'
- name: Run Maven with bump-versions profile
run: mvn clean package --batch-mode -Pbump-versions
- name: Create Pull Request
run: gh pr create --base master --title 'Bump all dependency and Camunda versions' --body 'Created by Github action'
- name: Create pull request
uses: peter-evans/create-pull-request@v7
with:
commit-message: 'chore(pom): Bump all versions in all examples'
branch: bump-versions
delete-branch: true
title: 'Bump all dependency and Camunda versions'
body: 'Created by Github action'
base: master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit dbfa279

Please sign in to comment.