actions - add notification
Some checks failed
mkdocs build / build (push) Successful in 5s
mkdocs build / notification (push) Failing after 0s

This commit is contained in:
Ludovic Cartier 2024-09-02 18:43:29 +02:00
parent 147e4df77c
commit 56128f2d3f

View File

@ -22,5 +22,22 @@ jobs:
# files: |- # files: |-
# _site/** # _site/**
# token: "${{ secrets.RELEASE_TOKEN }}" # token: "${{ secrets.RELEASE_TOKEN }}"
notification:
runs-on: ubuntu-latest
needs: build
steps:
- name: create payload var
runs: |
PAYLOAD=$(cat << EOF
payload={
\"username\": \"gitea-bot\",
\"icon_url\": \"https://icinga.com/wp-content/uploads/2017/08/icon-core.png\",
\"text\": \"mkdocs build has just finished !\"
}
EOF
)
id: my_payload
- name: curl webhook
runs: |
curl --connect-timeout 30 --max-time 60 -s -S -X POST --data-urlencode "${{ env.PAYLOAD }}" "${{ secrets.WEBHOOK_URL }}"