Skip to content

Bump actions/checkout from 4.1.4 to 4.1.5 #429

Bump actions/checkout from 4.1.4 to 4.1.5

Bump actions/checkout from 4.1.4 to 4.1.5 #429

Workflow file for this run

name: Backport
on:
pull_request_target:
branches:
- main
- release/*
types:
- closed
- labeled
permissions:
contents: write
pull-requests: write
jobs:
backport:
name: Backport
runs-on: ubuntu-latest
timeout-minutes: 5
if: >
github.event.pull_request.merged && (
github.event.action == 'closed' || (
github.event.action == 'labeled' &&
contains(github.event.label.name, 'backport')
)
)
steps:
- name: Backport
uses: tibdex/backport@v2.0.4
with:
github_token: ${{secrets.AUTOMATION_TOKEN}}
head_template: 'auto/backport-<%= number %>-to-<%= base %>'
label_pattern: '^backport: (?<base>([^ ]+))$'
title_template: '[Backport] <%= title %>'