From 76cdd535c854cca0898e2b94ba95ae83d413ab36 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Thu, 16 Apr 2026 13:35:26 -0400 Subject: [PATCH] gitea workflow: remove notifications --- .gitea/workflows/deploy.yml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index a6fe01f..d4d76ca 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -36,23 +36,3 @@ jobs: mkdir -p /var/lib/dotfiles-deploy readlink -f result > /var/lib/dotfiles-deploy/mreow nix-store --add-root /var/lib/dotfiles-deploy/mreow-gcroot -r "$(readlink -f result)" - - - name: Notify success - if: success() - run: | - curl -sf -X POST \ - "https://ntfy.sigkill.computer/deployments" \ - -H "Title: [dotfiles] Build succeeded" \ - -H "Priority: default" \ - -H "Tags: white_check_mark" \ - -d "dotfiles built from commit ${GITHUB_SHA::8}" - - - name: Notify failure - if: failure() - run: | - curl -sf -X POST \ - "https://ntfy.sigkill.computer/deployments" \ - -H "Title: [dotfiles] Build FAILED" \ - -H "Priority: urgent" \ - -H "Tags: rotating_light" \ - -d "dotfiles build failed at commit ${GITHUB_SHA::8}"