Skip to content

Commit

Permalink
back to double quotes
Browse files Browse the repository at this point in the history
Signed-off-by: Oliver Koenig <[email protected]>
  • Loading branch information
ko3n1g committed Jun 5, 2024
1 parent 12e2f8c commit 9a8fe89
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ 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
- reopened
- ready_for_review
- synchronize
paths-ignore:
- '**.md'
- "**.md"
workflow_dispatch:
inputs:
PUBLISH:
Expand All @@ -25,15 +25,15 @@ 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:
type: string
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:
Expand All @@ -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:
Expand Down Expand Up @@ -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}
Expand Down Expand Up @@ -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: |
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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 }}
Expand Down

0 comments on commit 9a8fe89

Please sign in to comment.