Skip to content

Commit 8caf21b

Browse files
committed
Start "master"->"3.x" rename (JSTEP-12)
1 parent 759b89e commit 8caf21b

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

.github/workflows/dep_build_v3.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2424
with:
25-
ref: master
25+
ref: 3.x
2626
- name: Set up JDK
2727
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0
2828
with:

.github/workflows/main.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,14 @@ name: Build and Deploy Snapshot
22
on:
33
push:
44
branches:
5-
- master
6-
- "3.0"
5+
- 3.x
76
- "2.19"
87
paths-ignore:
98
- "README.md"
109
- "release-notes/*"
1110
pull_request:
1211
branches:
13-
- master
14-
- "3.0"
12+
- 3.x
1513
- "2.19"
1614
paths-ignore:
1715
- "README.md"
@@ -90,8 +88,8 @@ jobs:
9088
trigger-dep-build-v3:
9189
name: Trigger v3 dep builds
9290
needs: [build]
93-
# Only for pushes to default branch
94-
if: ${{ github.event_name == 'push' && github.ref_name == 'master' }}
91+
# Only for pushes to 3.x branch
92+
if: ${{ github.event_name == 'push' && github.ref_name == '3.x' }}
9593
uses: ./.github/workflows/trigger_dep_builds_v3.yml
9694
secrets:
9795
token: ${{ secrets.REPO_DISPATCH }}

0 commit comments

Comments
 (0)