Skip to content
Merged
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/build-and-run-model.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,8 @@ jobs:
# required in order to allow the reusable called workflow to push to
# GitHub Container Registry
packages: write
uses: ccao-data/actions/.github/workflows/build-and-run-batch-job.yaml@Add-parameter-to-build-and-run-model-res-workflow-to-run-ingest-on-Batch
uses: ccao-data/actions/.github/workflows/build-and-run-batch-job.yaml@main
with:
ref: Add-parameter-to-build-and-run-model-res-workflow-to-run-ingest-on-Batch
command: ${{ needs.parse-command.outputs.command }}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[Nitpick, required] This is likely why you had to unfreeze ingest to run this logic in the workflow -- without the command key, the reusable build-and-run-batch-job workflow will always fall back to the default (empty string), which will mean that the bash logic that decides whether to override the container command will never return an override. So basically, without command, repro_ingest will always be a no-op.

backend: "ec2"
vcpu: "40"
memory: "158000"
Expand Down
Loading