From 5aa9061006c03b87f5db33e997b7074d35556f81 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Mon, 28 Feb 2022 17:54:41 -0600 Subject: [PATCH] remove the discord notification experiment Using this changed how the messages look in a way I don't like; removing the committer's icon and commit message. --- .gitlab-ci.yml | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 831fb3341..6f2dfb293 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,7 +6,6 @@ stages: - gradleSetup - build - merge - - sendDiscordNotification variables: # Disable the Gradle daemon for Continuous Integration servers as correctness @@ -107,27 +106,6 @@ merge: - Merged expire_in: 1 day -# forth stage -success_notification: - image: eclipse-temurin:17 - stage: sendDiscordNotification - script: - - apk add --update git curl - - wget https://raw.githubusercontent.com/DiscordHooks/gitlab-ci-discord-webhook/master/send.sh - - chmod +x send.sh - - /bin/ash ./send.sh success $WEBHOOK_URL - when: on_success - -failure_notification: - image: eclipse-temurin:17 - stage: sendDiscordNotification - script: - - apk add --update git curl - - wget https://raw.githubusercontent.com/DiscordHooks/gitlab-ci-discord-webhook/master/send.sh - - chmod +x send.sh - - /bin/ash ./send.sh failure $WEBHOOK_URL - when: on_failure - ## - stage #deploy: