Skip to content

deps: bump zeebe version to 8.1.20 #2041

deps: bump zeebe version to 8.1.20

deps: bump zeebe version to 8.1.20 #2041

Workflow file for this run

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@v3
with:
# Required to find all branches
fetch-depth: 0
- name: Create backport PRs
# Should be kept in sync with `version`
uses: zeebe-io/[email protected]
with:
# Required
# Version of the backport-action
# Must equal the version in `uses`
# Recommended: latest tag or `master`
version: v0.0.5
# Required
# Token to authenticate requests to GitHub
github_token: ${{ secrets.GITHUB_TOKEN }}
# Required
# Working directory for the backport script
github_workspace: ${{ github.workspace }}
# Optional
# Regex pattern to match github labels
# Must contain a capture group for target branchname
# label_pattern: ^backport ([^ ]+)$
# Optional
# Template used as description in the pull requests created by this action.
# Placeholders can be used to define variable values.
# These are indicated by a dollar sign and curly braces (`${placeholder}`).
# Please refer to this action's README for all available placeholders.
pull_description: |-
# Description
Backport of #${pull_number} to `${target_branch}`.
relates to ${issue_refs}