Skip to content

Commit b90e2c7

Browse files
committed
fix: Avoid escaping $ in example runner hooks
Commit 2622589 disabled heredoc interpolation of runner hooks. Update the examples accordingly
1 parent b56d6d3 commit b90e2c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/multi-runner/templates/runner-configs/linux-arm64.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ runner_config:
1919
delay_webhook_event: 0
2020
scale_down_schedule_expression: cron(* * * * ? *)
2121
runner_hook_job_started: |
22-
echo "Running pre job hook as \$(whoami)"
22+
echo "Running pre job hook as $(whoami)"
2323
runner_hook_job_completed: |
24-
echo "Running post job hook as \$(whoami)"
24+
echo "Running post job hook as $(whoami)"

0 commit comments

Comments
 (0)