Add commit info to notification

This commit is contained in:
Natsu Kagami 2023-05-19 15:41:12 +02:00
parent 3c4e9451e4
commit a18f89c5da
Signed by: nki
GPG key ID: 7306B3D3C3AD6E51

View file

@ -40,13 +40,14 @@ jobs:
- uses: actions/checkout@v2.3.4 - uses: actions/checkout@v2.3.4
- name: Notify deployment starting - name: Notify deployment starting
run: | run: |
git show | curl \ git show --no-patch | curl \
--fail-with-body \ --fail-with-body \
-u "${{ secrets.NTFY_CREDS }}" \ -u "${{ secrets.NTFY_CREDS }}" \
-H "X-Title: Deployment to nki-personal-do started" \ -H "X-Title: Deployment to nki-personal-do started" \
-H "X-Tags: cloud" \ -H "X-Tags: cloud" \
-H "Actions: view, Open Job on GitHub, ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/jobs/${{ github.job }}" \ -H "Actions: view, Open Job on GitHub, ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/jobs/${{ github.job }}" \
-d "Commit info:" \ -d "Commit info:
" \
-d @- \ -d @- \
https://ntfy.nkagami.me/nki-personal-do https://ntfy.nkagami.me/nki-personal-do
- name: Add SSH key - name: Add SSH key
@ -74,26 +75,28 @@ jobs:
nix run github:serokell/deploy-rs -- . --hostname ${{ secrets.INSTANCE_IP }} -s -- -L nix run github:serokell/deploy-rs -- . --hostname ${{ secrets.INSTANCE_IP }} -s -- -L
- name: Notify deployment succeeding - name: Notify deployment succeeding
run: | run: |
git show | curl \ git show --no-patch | curl \
--fail-with-body \ --fail-with-body \
-u "${{ secrets.NTFY_CREDS }}" \ -u "${{ secrets.NTFY_CREDS }}" \
-H "X-Title: Deployment to nki-personal-do succeeded" \ -H "X-Title: Deployment to nki-personal-do succeeded" \
-H "X-Tags: tada,cloud" \ -H "X-Tags: tada,cloud" \
-H "Actions: view, Open Job on GitHub, ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/jobs/${{ github.job }}" \ -H "Actions: view, Open Job on GitHub, ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/jobs/${{ github.job }}" \
-d "Commit info:" \ -d "Commit info:
" \
-d @- \ -d @- \
https://ntfy.nkagami.me/nki-personal-do https://ntfy.nkagami.me/nki-personal-do
- name: Notify deployment failing - name: Notify deployment failing
if: ${{ failure() }} if: ${{ failure() }}
run: | run: |
git show | curl \ git show --no-patch | curl \
--fail-with-body \ --fail-with-body \
-u "${{ secrets.NTFY_CREDS }}" \ -u "${{ secrets.NTFY_CREDS }}" \
-H "X-Title: Deployment to nki-personal-do failed" \ -H "X-Title: Deployment to nki-personal-do failed" \
-H "X-Priority: 4" \ -H "X-Priority: 4" \
-H "X-Tags: warning,cloud" \ -H "X-Tags: warning,cloud" \
-H "Actions: view, Open Job on GitHub, ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/jobs/${{ github.job }}" \ -H "Actions: view, Open Job on GitHub, ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/jobs/${{ github.job }}" \
-d "Commit info:" \ -d "Commit info:
" \
-d @- \ -d @- \
https://ntfy.nkagami.me/nki-personal-do https://ntfy.nkagami.me/nki-personal-do