This commit is contained in:
parent
4d7fa671bc
commit
87e20d9594
@ -14,6 +14,11 @@ jobs:
|
|||||||
- name: Send success notification
|
- name: Send success notification
|
||||||
if: ${{ always() }}
|
if: ${{ always() }}
|
||||||
run: |
|
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.
|
echo build ${{ github.repository }} finished.
|
||||||
cat resources/notify.tpl | envsubst | jq -sR .
|
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
|
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 }}
|
repo: $AMASS_REPO_NAME
|
||||||
status: ${{ job.status }}
|
status: $AMASS_BUILD_STATUS
|
||||||
commit: ${{ github.sha }}
|
commit: $AMASS_COMMIT
|
||||||
message: ${{ github.event.head_commit.message }}
|
message: $AMASS_COMMIT_MESSAGE
|
||||||
build link: $DRONE_BUILD_LINK
|
build link: $AMASS_BUILD_LINK
|
||||||
repo link: https://gitea.amass.fun/${{ github.repository }}
|
repo link: $AMASS_REPO_LINK
|
Loading…
Reference in New Issue
Block a user