Skip to content

Commit

Permalink
Fix: Correct indentation on github-actions with aws inputs (#1602)
Browse files Browse the repository at this point in the history
Why do we need this change?
=======================
The live documentation had inputs at the same level as the workflow-dispatch, this will result in an error if folks just copy/paste the results and attempt to run.

What effects does this change have?
=======================
* Fixes the indentation that the inputs are required in the workflow_dispatch:, and not at the same level.
  • Loading branch information
JoshuaJackson-jobvite committed Jul 5, 2024
1 parent 3e32800 commit c9147d6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/getting-started/github-actions-+-aws.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ name: Digger Workflow
on:
workflow_dispatch:
inputs:
spec:
required: true
run_name:
required: false
inputs:
spec:
required: true
run_name:
required: false
run-name: '${{inputs.run_name}}'
Expand Down

0 comments on commit c9147d6

Please sign in to comment.