From 28e12dbf0246ca65ff836a02bfcf66b7990d28cb Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Thu, 7 Dec 2023 11:25:45 -0500 Subject: [PATCH] Add Backport issue GHA workflow --- .github/workflows/backport-issue.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/backport-issue.yml diff --git a/.github/workflows/backport-issue.yml b/.github/workflows/backport-issue.yml new file mode 100644 index 0000000000..59326f48d8 --- /dev/null +++ b/.github/workflows/backport-issue.yml @@ -0,0 +1,12 @@ +name: Backport Issue + +on: + push: + branches: + - '*.x' + +jobs: + backport-issue: + uses: artembilan/spring-github-workflows/.github/workflows/spring-backport-issue.yml@main + secrets: + GH_ACTIONS_REPO_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }} \ No newline at end of file