This commit is contained in:
parent
4d7fa671bc
commit
87e20d9594
@ -14,6 +14,11 @@ jobs:
|
||||
- name: Send success notification
|
||||
if: ${{ always() }}
|
||||
run: |
|
||||
AMASS_REPO_NAME=${{ github.repository }}
|
||||
AMASS_BUILD_STATUS=${{ job.status }}
|
||||
AMASS_COMMIT=${{ github.sha }}
|
||||
AMASS_COMMIT_MESSAGE=${{ github.event.head_commit.message }}
|
||||
AMASS_REPO_LINK=https://gitea.amass.fun/${{ github.repository }}
|
||||
echo build ${{ github.repository }} finished.
|
||||
cat resources/notify.tpl | envsubst | jq -sR .
|
||||
cat resources/notify.tpl | envsubst | jq -sR . | xargs -0 -I {} curl -H "Content-Type: application/json" -X POST -d '{"type":"text","msg":{} }' https://amass.fun/notify
|
@ -1,6 +1,6 @@
|
||||
repo: ${{ github.repository }}
|
||||
status: ${{ job.status }}
|
||||
commit: ${{ github.sha }}
|
||||
message: ${{ github.event.head_commit.message }}
|
||||
build link: $DRONE_BUILD_LINK
|
||||
repo link: https://gitea.amass.fun/${{ github.repository }}
|
||||
repo: $AMASS_REPO_NAME
|
||||
status: $AMASS_BUILD_STATUS
|
||||
commit: $AMASS_COMMIT
|
||||
message: $AMASS_COMMIT_MESSAGE
|
||||
build link: $AMASS_BUILD_LINK
|
||||
repo link: $AMASS_REPO_LINK
|
Loading…
Reference in New Issue
Block a user