File tree Expand file tree Collapse file tree 4 files changed +28
-0
lines changed
Expand file tree Collapse file tree 4 files changed +28
-0
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 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 }}
Original file line number Diff line number Diff line change 44 pull_request :
55 branches :
66 - ' main'
7+ - ' 1.1.x'
78 - ' 1.0.x'
89 paths-ignore :
910 - ' .github/**'
Original file line number Diff line number Diff line change 44 push :
55 branches :
66 - ' main'
7+ - ' 1.1.x'
8+ - ' 1.0.x'
79 paths-ignore :
810 - ' .github/**'
911 schedule :
You can’t perform that action at this time.
0 commit comments