fix(deps): replace dependency io.camunda:spring-boot-starter-camunda-sdk with io.camunda:camunda-spring-boot-starter (release/8.5) #64
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Backport labeled merged pull requests | |
| on: | |
| pull_request: | |
| types: [closed] | |
| issue_comment: | |
| types: [created] | |
| permissions: | |
| contents: write # so it can comment | |
| pull-requests: write # so it can create pull requests | |
| jobs: | |
| backport: | |
| name: Create backport PRs | |
| runs-on: ubuntu-latest | |
| # Only run when pull request is merged | |
| # or when a comment starting with `/backport` is created by someone other than the | |
| # https://github.com/backport-action bot user (user id: 97796249). Note that if you use your | |
| # own PAT as `github_token`, that you should replace this id with yours. | |
| if: > | |
| ( | |
| github.event_name == 'pull_request' && | |
| github.event.pull_request.merged | |
| ) || ( | |
| github.event_name == 'issue_comment' && | |
| github.event.issue.pull_request && | |
| startsWith(github.event.comment.body, '/backport') | |
| ) | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Create backport PRs | |
| uses: korthout/backport-action@v3 | |
| with: | |
| pull_description: |- | |
| # Description | |
| Backport of #${pull_number} to `${target_branch}`. | |
| relates to ${issue_refs} | |
| add_author_as_assignee: true | |
| experimental: > | |
| { | |
| "conflict_resolution": "draft_commit_conflicts" | |
| } |