From 311e7ea80fc27e458263e88684dba6d2a9de7799 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Thu, 8 Feb 2024 18:23:54 -0500 Subject: [PATCH] Add `auto-cherry-pick.yml` GHA workflow and tries to cherry-pick it to requested branches in that sentence. For example like with this commit: (cherry picked from commit b5f989c42095a864db50195c0ce106cfcc03381e) --- .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 00000000..4a9c4479 --- /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