Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new workflow for backporting #400

Merged
merged 1 commit into from
Feb 9, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
49 changes: 49 additions & 0 deletions .github/workflows/backport.yml
@@ -0,0 +1,49 @@
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@v2
- name: Create backport PRs
uses: zeebe-io/backport-action@v0.0.7
with:
# Required
# Token to authenticate requests to GitHub
github_token: ${{ secrets.GITHUB_TOKEN }}

# Required
# Working directory for the backport action
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}