Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add hashtag to example script #4136

Merged
merged 1 commit into from
Jul 5, 2023
Merged
Changes from all 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: 2 additions & 2 deletions docs/docs/articles/creating-tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ When such a test is created you will see additional annotations for its cron job
If you need to provide additional configuration for your executor environment, you can submit a prerun/postrun script to be executed before the test is started and after test is completed. For example, we have a simple shell script stored in `pre_script.sh` and `post_script.sh` files:

```sh
!/bin/sh
#!/bin/sh
echo "Storing ssl certificate in file from env secret env"
echo "$SSL_CERT" > /data/ssl.crt
Expand All @@ -439,7 +439,7 @@ echo "$SSL_CERT" > /data/ssl.crt
and

```sh
!/bin/sh
#!/bin/sh
echo "Sleeping for 30 seconds"
sleep 30
Expand Down