Skip to content

Commit

Permalink
fix: Avoid escaping $ in example runner hooks
Browse files Browse the repository at this point in the history
Commit 2622589 disabled heredoc
interpolation of runner hooks. Update the examples accordingly
  • Loading branch information
winwinashwin committed Jan 24, 2025
1 parent 7d028c3 commit 4b81f82
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ runner_config:
delay_webhook_event: 0
scale_down_schedule_expression: cron(* * * * ? *)
runner_hook_job_started: |
echo "Running pre job hook as \$(whoami)"
echo "Running pre job hook as $(whoami)"
runner_hook_job_completed: |
echo "Running post job hook as \$(whoami)"
echo "Running post job hook as $(whoami)"

0 comments on commit 4b81f82

Please sign in to comment.