mirror of
https://github.com/kennethreitz/pydantic.git
synced 2026-06-05 23:00:18 +00:00
dcf3567876
Bumps [carloscastrojumo/github-cherry-pick-action](https://github.com/carloscastrojumo/github-cherry-pick-action) from 1.0.4 to 1.0.6. - [Release notes](https://github.com/carloscastrojumo/github-cherry-pick-action/releases) - [Commits](https://github.com/carloscastrojumo/github-cherry-pick-action/compare/v1.0.4...v1.0.6) --- updated-dependencies: - dependency-name: carloscastrojumo/github-cherry-pick-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
32 lines
770 B
YAML
32 lines
770 B
YAML
name: Cherry Pick
|
|
|
|
on:
|
|
pull_request_target:
|
|
branches:
|
|
- main
|
|
types:
|
|
- closed
|
|
|
|
jobs:
|
|
cherry_pick:
|
|
runs-on: ubuntu-latest
|
|
|
|
name: Cherry pick into 1.10.X-fixes
|
|
|
|
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'cherry-pick-v1')
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Cherry pick into 1.10.X-fixes
|
|
uses: carloscastrojumo/github-cherry-pick-action@v1.0.6
|
|
with:
|
|
branch: 1.10.X-fixes
|
|
labels: from-cherry-pick
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
title: '[cherry-pick] {old_title}'
|
|
body: 'Cherry picking #{old_pull_request_id} onto this branch'
|