@@ -2,7 +2,7 @@ name: Develop Branch Snapshots
22
33on :
44 push :
5- branches : [ develop ]
5+ branches : [ dev ]
66 schedule :
77 - cron : ' 0 2 * * *'
88 workflow_dispatch :
1414jobs :
1515 validate-develop :
1616 runs-on : ubuntu-latest
17- if : github.ref == 'refs/heads/develop '
17+ if : github.ref == 'refs/heads/dev '
1818 timeout-minutes : 15
1919 outputs :
2020 snapshot-version : ${{ steps.version.outputs.snapshot-version }}
2323 - name : Checkout develop
2424 uses : actions/checkout@v4
2525 with :
26- ref : develop
26+ ref : dev
2727 fetch-depth : 0
2828
2929 - name : Setup JDK ${{ env.JAVA_VERSION }}
@@ -62,13 +62,13 @@ jobs:
6262 runs-on : ubuntu-latest
6363 needs : validate-develop
6464 timeout-minutes : 25
65- if : github.ref == 'refs/heads/develop '
65+ if : github.ref == 'refs/heads/dev '
6666
6767 steps :
6868 - name : Checkout develop
6969 uses : actions/checkout@v4
7070 with :
71- ref : develop
71+ ref : dev
7272 fetch-depth : 0
7373
7474 - name : Setup JDK ${{ env.JAVA_VERSION }}
@@ -159,7 +159,7 @@ jobs:
159159 runs-on : ubuntu-latest
160160 needs : validate-develop
161161 timeout-minutes : 15
162- if : github.ref == 'refs/heads/develop '
162+ if : github.ref == 'refs/heads/dev '
163163
164164 permissions :
165165 contents : read
@@ -169,7 +169,7 @@ jobs:
169169 - name : Checkout develop
170170 uses : actions/checkout@v4
171171 with :
172- ref : develop
172+ ref : dev
173173
174174 - name : Setup JDK ${{ env.JAVA_VERSION }}
175175 uses : actions/setup-java@v4
@@ -217,7 +217,7 @@ jobs:
217217 runs-on : ubuntu-latest
218218 needs : [ maven-central-snapshot, github-packages-snapshot ]
219219 timeout-minutes : 10
220- if : github.ref == 'refs/heads/develop '
220+ if : github.ref == 'refs/heads/dev '
221221
222222 steps :
223223 - name : Final verification
@@ -247,7 +247,7 @@ jobs:
247247 notification :
248248 runs-on : ubuntu-latest
249249 needs : [ validate-develop, maven-central-snapshot, github-packages-snapshot, verify-deployments ]
250- if : always() && github.ref == 'refs/heads/develop '
250+ if : always() && github.ref == 'refs/heads/dev '
251251
252252 steps :
253253 - name : Workflow status summary
0 commit comments