Files
pydantic/.github/workflows/cherry-pick.yml
T
dependabot[bot] 12158b8943 build(deps): bump actions/checkout from 2 to 3 (#4579)
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

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>
2022-10-07 09:10:24 +02:00

30 lines
652 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.3
with:
branch: 1.10.X-fixes
labels: from-cherry-pick
token: ${{ secrets.GITHUB_TOKEN }}