Compare commits

...

2 commits

Author SHA1 Message Date
Bruno BELANYI 7a60ff4022 flake: bump version to v0.4.0
All checks were successful
ci/woodpecker/push/check Pipeline was successful
2024-01-03 14:42:05 +00:00
Bruno BELANYI 90c2f8b782 matrix-notifier: fix link to pipeline 2024-01-03 14:42:05 +00:00
2 changed files with 2 additions and 2 deletions

View file

@ -75,7 +75,7 @@
matrix-notifier = pkgs.stdenvNoCC.mkDerivation rec {
pname = "matrix-notifier";
version = "0.3.0";
version = "0.4.0";
src = ./matrix-notifier;

View file

@ -40,7 +40,7 @@ rawurlencode() {
default_woodpecker_message() {
local msg="Build ${CI_PIPELINE_STATUS}"
local woodpecker_url="${CI_SYSTEM_LINK}/${CI_REPO}/${CI_PIPELINE_NUMBER}"
local woodpecker_url="${CI_SYSTEM_URL}/${CI_REPO}/pipeline/${CI_PIPELINE_NUMBER}"
if [ "$FORMAT" == "true" ]; then
msg="$msg [${CI_REPO}#${CI_COMMIT_SHA:0:8}]($woodpecker_url)"
else