From 116284af910ef26ab4f88942690d0900d9bbc5e7 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Thu, 8 Feb 2024 14:14:44 -0500 Subject: [PATCH] Add `auto-cherry-pick.yml` GHA workflow **Auto-cherry-pick to `6.1.x`** --- .github/workflows/auto-cherry-pick.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/auto-cherry-pick.yml diff --git a/.github/workflows/auto-cherry-pick.yml b/.github/workflows/auto-cherry-pick.yml new file mode 100644 index 0000000000..4a9c4479ef --- /dev/null +++ b/.github/workflows/auto-cherry-pick.yml @@ -0,0 +1,13 @@ +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@main + secrets: + GH_ACTIONS_REPO_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }} \ No newline at end of file