Skip to content

Commit 48f577e

Browse files
committed
New GH Action workflows for auto-cherry-pick and backport-issue
Signed-off-by: Soby Chacko <soby.chacko@broadcom.com>
1 parent bfaa6be commit 48f577e

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Auto Cherry-Pick
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- '*.x'
8+
9+
jobs:
10+
cherry-pick-commit:
11+
uses: spring-io/spring-github-workflows/.github/workflows/spring-cherry-pick.yml@v5
12+
secrets:
13+
GH_ACTIONS_REPO_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}

.github/workflows/backport-issue.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Backport Issue
2+
3+
on:
4+
push:
5+
branches:
6+
- '*.x'
7+
8+
jobs:
9+
backport-issue:
10+
uses: spring-io/spring-github-workflows/.github/workflows/spring-backport-issue.yml@v5
11+
secrets:
12+
GH_ACTIONS_REPO_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}

0 commit comments

Comments
 (0)