Skip to content

Commit 9a8fe89

Browse files
committed
back to double quotes
Signed-off-by: Oliver Koenig <[email protected]>
1 parent 12e2f8c commit 9a8fe89

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/ci.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ name: CI
22

33
on:
44
schedule:
5-
- cron: '30 9 * * *' # Pacific Time 01:30 AM in UTC
5+
- cron: "30 9 * * *" # Pacific Time 01:30 AM in UTC
66
pull_request:
77
types:
88
- opened
99
- reopened
1010
- ready_for_review
1111
- synchronize
1212
paths-ignore:
13-
- '**.md'
13+
- "**.md"
1414
workflow_dispatch:
1515
inputs:
1616
PUBLISH:
@@ -25,15 +25,15 @@ on:
2525
required: true
2626
MERGE_BUMPED_MANIFEST:
2727
type: boolean
28-
description: '(used if BUMP_MANIFEST=true) If true: attempt to PR/merge manifest branch'
28+
description: "(used if BUMP_MANIFEST=true) If true: attempt to PR/merge manifest branch"
2929
default: false
3030
required: false
3131
SOURCE_OVERRIDES:
3232
type: string
3333
description: |
3434
A comma-separated PACKAGE=URL#REF list to override sources used by build.
3535
PACKAGE∊{JAX,XLA,Flax,transformer-engine,T5X,paxml,praxis,maxtext,levanter,haliax,grok,mujuco,mujuco-mpc} (case-insensitive)
36-
default: ''
36+
default: ""
3737
TEST_SUBSET:
3838
type: string
3939
options:
@@ -49,7 +49,7 @@ on:
4949
- maxtext
5050
- grok
5151
description: Subset of tests to run. Will run all downstream-connected nodes and leaves.
52-
default: 'base'
52+
default: "base"
5353
required: false
5454

5555
concurrency:
@@ -129,7 +129,7 @@ jobs:
129129
echo "Error: If BUMP_MANIFEST=false, MERGE_BUMPED_MANIFEST cannot be true" >&2
130130
exit 1
131131
fi
132-
132+
133133
- name: Set TESTSET
134134
id: testset
135135
shell: bash -x -e {0}
@@ -243,7 +243,7 @@ jobs:
243243
name: ${{ needs.metadata.outputs.MANIFEST_ARTIFACT_NAME }}
244244
path: .github/container/
245245

246-
- name: 'Create local manifest branch: ${{ needs.metadata.outputs.MANIFEST_BRANCH }}'
246+
- name: "Create local manifest branch: ${{ needs.metadata.outputs.MANIFEST_BRANCH }}"
247247
id: local_branch
248248
shell: bash -x -e {0}
249249
run: |
@@ -303,7 +303,7 @@ jobs:
303303
env:
304304
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
305305

306-
- name: 'Log created PR: #${{ fromJson(steps.create_pr.outputs.data).number }}'
306+
- name: "Log created PR: #${{ fromJson(steps.create_pr.outputs.data).number }}"
307307
if: steps.create_pr.outcome == 'success'
308308
run: |
309309
echo "https://github.com/NVIDIA/JAX-Toolbox/pull/${{ fromJson(steps.create_pr.outputs.data).number }}" | tee -a $GITHUB_STEP_SUMMARY
@@ -439,7 +439,7 @@ jobs:
439439
440440
finalize:
441441
needs: [metadata, amd64, arm64, publish-containers]
442-
if: '!cancelled()'
442+
if: "!cancelled()"
443443
uses: ./.github/workflows/_finalize.yaml
444444
with:
445445
BUILD_DATE: ${{ needs.metadata.outputs.BUILD_DATE }}

0 commit comments

Comments
 (0)