Skip to content

Commit

Permalink
fix(actions): pass correct inputs from launch_job (#143)
Browse files Browse the repository at this point in the history
- The launch_job calling workflow needed to pass
  correctly-referenced inputs to the underlying run workflow.
  • Loading branch information
vsayer authored Aug 10, 2023
1 parent 71049c6 commit fcd9421
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions actions/launch_job/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ runs:
with:
organization_id: ${{ inputs.organization_id }}
deployment: ${{ inputs.deployment }}
location: ${{ inputs.location_name }}
repository: ${{ inputs.repository_name }}
job: ${{ inputs.job_name }}
location_name: ${{ inputs.location_name }}
repository_name: ${{ inputs.repository_name }}
job_name: ${{ inputs.job_name }}
env:
DAGSTER_CLOUD_API_TOKEN: ${{ inputs.dagster_cloud_api_token }}

0 comments on commit fcd9421

Please sign in to comment.