Skip to content

fix: add strict runc v1.4.2 patches #3571

fix: add strict runc v1.4.2 patches

fix: add strict runc v1.4.2 patches #3571

Workflow file for this run

name: Backport merged pull request
on:
pull_request_target:
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: Backport pull request
runs-on: ubuntu-latest
# Only run when pull request is merged
# or when a comment containing `/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.
# cdkbot's user ID is 99445902.
if: >
(
github.event_name == 'pull_request_target' &&
github.event.pull_request.merged
) || (
github.event_name == 'issue_comment' &&
github.event.issue.pull_request &&
github.event.comment.user.id != 99445902 &&
(github.event.comment.author_association == 'MEMBER' ||
github.event.comment.author_association == 'OWNER' ||
github.event.comment.author_association == 'COLLABORATOR') &&
contains(github.event.comment.body, '/backport')
)
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
fetch-depth: 0
- name: Create backport pull requests
uses: korthout/backport-action@7c3f6cd5843cac11bc59a04a1b7699af93261670 # v4
with:
# Set (default) action parameters explicitly.
branch_name: backport-${pull_number}-to-${target_branch}
cherry_picking: auto
copy_assignees: false
copy_milestone: false
copy_requested_reviewers: false
experimental: >
{
"conflict_resolution": "fail"
}
github_token: ${{ secrets.BOT_TOKEN }}
github_workspace: ${{ github.workspace }}
label_pattern: ^backport ([^ ]+)$
merge_commits: fail
pull_description: |-
# Description
Backport of #${pull_number} to `${target_branch}`.
pull_title: >-
[Backport ${target_branch}] ${pull_title}