From 9a8fe8992e18a7f58e9fd68b13e214cdf7a5622c Mon Sep 17 00:00:00 2001 From: Oliver Koenig Date: Wed, 5 Jun 2024 15:57:17 +0200 Subject: [PATCH] back to double quotes Signed-off-by: Oliver Koenig --- .github/workflows/ci.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f0e73a3ba..6dd69bbbe 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -2,7 +2,7 @@ name: CI on: schedule: - - cron: '30 9 * * *' # Pacific Time 01:30 AM in UTC + - cron: "30 9 * * *" # Pacific Time 01:30 AM in UTC pull_request: types: - opened @@ -10,7 +10,7 @@ on: - ready_for_review - synchronize paths-ignore: - - '**.md' + - "**.md" workflow_dispatch: inputs: PUBLISH: @@ -25,7 +25,7 @@ on: required: true MERGE_BUMPED_MANIFEST: type: boolean - description: '(used if BUMP_MANIFEST=true) If true: attempt to PR/merge manifest branch' + description: "(used if BUMP_MANIFEST=true) If true: attempt to PR/merge manifest branch" default: false required: false SOURCE_OVERRIDES: @@ -33,7 +33,7 @@ on: description: | A comma-separated PACKAGE=URL#REF list to override sources used by build. PACKAGEāˆŠ{JAX,XLA,Flax,transformer-engine,T5X,paxml,praxis,maxtext,levanter,haliax,grok,mujuco,mujuco-mpc} (case-insensitive) - default: '' + default: "" TEST_SUBSET: type: string options: @@ -49,7 +49,7 @@ on: - maxtext - grok description: Subset of tests to run. Will run all downstream-connected nodes and leaves. - default: 'base' + default: "base" required: false concurrency: @@ -129,7 +129,7 @@ jobs: echo "Error: If BUMP_MANIFEST=false, MERGE_BUMPED_MANIFEST cannot be true" >&2 exit 1 fi - + - name: Set TESTSET id: testset shell: bash -x -e {0} @@ -243,7 +243,7 @@ jobs: name: ${{ needs.metadata.outputs.MANIFEST_ARTIFACT_NAME }} path: .github/container/ - - name: 'Create local manifest branch: ${{ needs.metadata.outputs.MANIFEST_BRANCH }}' + - name: "Create local manifest branch: ${{ needs.metadata.outputs.MANIFEST_BRANCH }}" id: local_branch shell: bash -x -e {0} run: | @@ -303,7 +303,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: 'Log created PR: #${{ fromJson(steps.create_pr.outputs.data).number }}' + - name: "Log created PR: #${{ fromJson(steps.create_pr.outputs.data).number }}" if: steps.create_pr.outcome == 'success' run: | 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: finalize: needs: [metadata, amd64, arm64, publish-containers] - if: '!cancelled()' + if: "!cancelled()" uses: ./.github/workflows/_finalize.yaml with: BUILD_DATE: ${{ needs.metadata.outputs.BUILD_DATE }}