fix(deps): update dependency io.vavr:vavr to v0.10.5 #1702
Workflow file for this run
This file contains 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 | |
runs-on: ubuntu-latest | |
# Only run when pull request is merged | |
# or when a comment containing `/backport` is created | |
if: > | |
( | |
github.event_name == 'pull_request' && | |
github.event.pull_request.merged | |
) || ( | |
github.event_name == 'issue_comment' && | |
github.event.issue.pull_request && | |
contains(github.event.comment.body, '/backport') | |
) | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create backport PRs | |
uses: korthout/backport-action@v3 |