build(deps): bump org.apache.logging.log4j:log4j-core from 2.24.1 to 2.25.3 #525
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 ] | |
| jobs: | |
| build: | |
| name: Create backport PRs | |
| if: > | |
| github.event_name == 'pull_request' || | |
| ( | |
| github.event_name == 'issue_comment' && | |
| github.event.issue.pull_request && | |
| contains(github.event.comment.body, '/backport') | |
| ) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| # required to find all branches | |
| fetch-depth: 0 | |
| - name: Create backport PRs | |
| uses: zeebe-io/backport-action@master | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| github_workspace: ${{ github.workspace }} | |
| version: master |