Skip to content

Commit 00edcaf

Browse files
committed
Prepare CI for new minor branch 1.2.0
1 parent 61babd1 commit 00edcaf

File tree

4 files changed

+28
-0
lines changed

4 files changed

+28
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CI Dispatcher (1.1.x)
2+
3+
on:
4+
schedule:
5+
- cron: '0 11 * * */2' # Once every other day at 11am UTC
6+
workflow_dispatch:
7+
8+
jobs:
9+
dispatch_ci_workflow:
10+
name: Dispatch CI workflow
11+
if: github.repository == 'spring-projects/spring-pulsar'
12+
strategy:
13+
matrix:
14+
# List of active maintenance branches.
15+
branch: [ 1.1.x ]
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v4
20+
with:
21+
fetch-depth: 1
22+
- name: Dispatch
23+
env:
24+
GH_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
25+
run: gh workflow run ci.yml -r ${{ matrix.branch }}

.github/workflows/ci-pr.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
pull_request:
55
branches:
66
- 'main'
7+
- '1.1.x'
78
- '1.0.x'
89
paths-ignore:
910
- '.github/**'

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
push:
55
branches:
66
- 'main'
7+
- '1.1.x'
8+
- '1.0.x'
79
paths-ignore:
810
- '.github/**'
911
schedule:

0 commit comments

Comments
 (0)