mirror of
https://github.com/jadolg/rocketchat-notification-action.git
synced 2026-06-10 13:37:52 +00:00
7 lines
190 B
Bash
Executable File
7 lines
190 B
Bash
Executable File
#!/usr/bin/env sh
|
|
if $6 == "true"; then
|
|
rocketchat-notification -u "$1" -p "$2" -m "$3" -s "$4" -c "$5" -code
|
|
else
|
|
rocketchat-notification -u "$1" -p "$2" -m "$3" -s "$4" -c "$5"
|
|
fi
|