diff options
author | Julien Dessaux | 2022-09-04 12:49:20 +0200 |
---|---|---|
committer | Julien Dessaux | 2022-09-04 12:49:20 +0200 |
commit | 22b6adcd8e06da665fe61be6b56ca28ccb4d497b (patch) | |
tree | 2ecc0a82927424e33377f7ed961dcd5c4e7ba748 /hello | |
parent | Added makefile (diff) | |
download | ev-scripts-22b6adcd8e06da665fe61be6b56ca28ccb4d497b.tar.gz ev-scripts-22b6adcd8e06da665fe61be6b56ca28ccb4d497b.tar.bz2 ev-scripts-22b6adcd8e06da665fe61be6b56ca28ccb4d497b.zip |
Added hello job
Diffstat (limited to '')
-rw-r--r-- | hello/hello.yaml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/hello/hello.yaml b/hello/hello.yaml new file mode 100644 index 0000000..7af44cd --- /dev/null +++ b/hello/hello.yaml @@ -0,0 +1,8 @@ +name: "hello" +trigger: + event: "time/tick" + parameters: + periodic: 60 +steps: + - code: | + echo "Hello world!" |