From 48f577e708fedf1efaca48e7c48c11b3ed439a79 Mon Sep 17 00:00:00 2001 From: Soby Chacko Date: Thu, 29 May 2025 18:13:46 -0400 Subject: [PATCH] New GH Action workflows for auto-cherry-pick and backport-issue Signed-off-by: Soby Chacko --- .github/workflows/auto-cherry-pick.yml | 13 +++++++++++++ .github/workflows/backport-issue.yml | 12 ++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 .github/workflows/auto-cherry-pick.yml create mode 100644 .github/workflows/backport-issue.yml diff --git a/.github/workflows/auto-cherry-pick.yml b/.github/workflows/auto-cherry-pick.yml new file mode 100644 index 000000000..1e757c9f0 --- /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@v5 + secrets: + GH_ACTIONS_REPO_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }} diff --git a/.github/workflows/backport-issue.yml b/.github/workflows/backport-issue.yml new file mode 100644 index 000000000..a5b420eb9 --- /dev/null +++ b/.github/workflows/backport-issue.yml @@ -0,0 +1,12 @@ +name: Backport Issue + +on: + push: + branches: + - '*.x' + +jobs: + backport-issue: + uses: spring-io/spring-github-workflows/.github/workflows/spring-backport-issue.yml@v5 + secrets: + GH_ACTIONS_REPO_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}