* Add `*.x` branch pattern to `merge-dependabot-pr.yml` and `pr-build.yml` * Add `auto-cherry-pick.yml` and `backport-issue.yml` workflows **Auto-cherry-pick to `5.0.x`**
13 lines
272 B
YAML
13 lines
272 B
YAML
name: Auto Cherry-Pick
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- '*.x'
|
|
|
|
jobs:
|
|
cherry-pick-commit:
|
|
uses: spring-io/spring-github-workflows/.github/workflows/spring-cherry-pick.yml@v5
|
|
secrets:
|
|
GH_ACTIONS_REPO_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }} |