feat: add notification for deployment start in workflow
All checks were successful
Deploy / deploy (push) Successful in 33s

This commit is contained in:
2026-03-13 20:52:44 +00:00
parent dab87b446d
commit c4dcbd7006

View File

@@ -9,6 +9,18 @@ jobs:
deploy: deploy:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Notify Start
if: always()
uses: https://git.tainton.uk/actions/pushover-action@v1.1.5
env:
PUSHOVER_APP_TOKEN: ${{ secrets.PUSHOVER_APP_TOKEN }}
PUSHOVER_USER_TOKEN: ${{ secrets.PUSHOVER_USER_TOKEN }}
with:
title: "Meraki Configuration Deploy"
message: "Meraki configuration deployment started."
sound: "pushover"
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v6.0.2 uses: actions/checkout@v6.0.2