From 622cb5db7633dd78b9c1df6b595bfa358827f0d6 Mon Sep 17 00:00:00 2001 From: Marius Merschformann Date: Wed, 18 Sep 2024 04:02:09 +0200 Subject: [PATCH] Adding slack release notifications --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2e97b71..e1e6ff3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -96,3 +96,8 @@ jobs: --generate-notes \ --title $VERSION $PRERELEASE_FLAG working-directory: ./go-highs + + - name: notify slack + run: | + export DATA="{\"text\":\"Release notification - go-highs $VERSION (see )\"}" + curl -X POST -H 'Content-type: application/json' --data "$DATA" ${{ secrets.SLACK_WEBHOOK_URL }}