Skip to content

Commit 829b62b

Browse files
committed
Differentiate 2.4.x CI from master CI
- rename CI workflow file - rename CI workflow identifier - change daily build time - ensure checkout is always run on 2.4.x Issue: gh-1794
1 parent b7209f8 commit 829b62b

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/continuous-integration-workflow.yml renamed to .github/workflows/continuous-integration-workflow-2.4.x.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
name: CI
1+
name: 2.4.x CI
22

33
on:
44
push:
55
branches:
66
- 2.4.x
77
schedule:
8-
- cron: '0 10 * * *' # Once per day at 10am UTC
8+
- cron: '4 10 * * *' # Once per day at 10:04am UTC
99
workflow_dispatch: # Manual trigger
1010

1111
env:
@@ -25,6 +25,8 @@ jobs:
2525
fail-fast: false
2626
steps:
2727
- uses: actions/checkout@v2
28+
with:
29+
ref: '2.4.x'
2830
- name: Set up JDK ${{ matrix.jdk }}
2931
uses: actions/setup-java@v1
3032
with:
@@ -47,6 +49,8 @@ jobs:
4749
runs-on: ubuntu-latest
4850
steps:
4951
- uses: actions/checkout@v2
52+
with:
53+
ref: '2.4.x'
5054
- name: Set up JDK
5155
uses: actions/setup-java@v1
5256
with:
@@ -74,6 +78,8 @@ jobs:
7478
runs-on: ubuntu-latest
7579
steps:
7680
- uses: actions/checkout@v2
81+
with:
82+
ref: '2.4.x'
7783
- name: Set up JDK
7884
uses: actions/setup-java@v1
7985
with:

0 commit comments

Comments
 (0)