From 47116d156560802d29e114e993d49ae336bc3da4 Mon Sep 17 00:00:00 2001 From: surtur Date: Mon, 2 Mar 2020 20:01:26 +0100 Subject: [PATCH] testing discord webhook --- .drone.yml | 39 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 5729390..73387f6 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,6 +1,6 @@ --- kind: pipeline -name: test on amd64 +name: testing-amd64 platform: arch: amd64 @@ -15,3 +15,40 @@ steps: - valgrind --log-file=valgrind_output ./pjc-0x02 < ./test_input > output - cat valgrind_output - grep "no leaks are possible" valgrind_output + + +--- +kind: pipeline +name: notifications + +platform: + os: linux + arch: arm64 + +clone: + disable: true + +trigger: + branch: + - master + - "release/*" + event: + - push + - tag + status: + - success + - failure + +depends_on: + - testing-amd64 + +steps: + - name: discord + pull: always + image: appleboy/drone-discord:1.2.4 + settings: + message: "{{#success build.status}} āœ… Build #{{build.number}} of `{{repo.name}}` succeeded.\n\nšŸ“ Commit by {{commit.author}} on `{{commit.branch}}`:\n``` {{commit.message}} ```\n\nšŸŒ {{ build.link }} {{else}} āŒ Build #{{build.number}} of `{{repo.name}}` failed.\n\nšŸ“ Commit by {{commit.author}} on `{{commit.branch}}`:\n``` {{commit.message}} ```\n\nšŸŒ {{ build.link }} {{/success}}\n" + webhook_id: + from_secret: discord_webhook_id + webhook_token: + from_secret: discord_webhook_token