chore: add notification action

[skip ci]
This commit is contained in:
Marcel S. Henselin 2026-03-25 11:09:32 +01:00
parent 03776cc7fd
commit 722c46b12d
3 changed files with 148 additions and 0 deletions

View file

@ -27,6 +27,16 @@ jobs:
name: Acceptance Tests
runs-on: stackit-docker
steps:
- name: Notify
uses: ./.github/actions/notify
with:
title: Terraform Acceptance Tests started
event_title: ${{ github.event.type }}
event_author: ${{ github.event.actor.login }}
event_body: 'No event body.'
event_number: ${{ github.event.id }}
event_url: "${{ github.repositoryUrl }}"
- name: Checkout
uses: actions/checkout@v6
@ -59,3 +69,13 @@ jobs:
tf_acc_kek_key_ring_id: ${{ vars.TF_ACC_KEK_KEY_RING_ID }}
tf_acc_kek_key_version: ${{ vars.TF_ACC_KEK_KEY_VERSION }}
tf_acc_kek_service_account: ${{ vars.TF_ACC_KEK_SERVICE_ACCOUNT }}
- name: Notify
uses: ./.github/actions/notify
with:
title: Terraform Acceptance Tests finished
event_title: ${{ github.event.type }}
event_author: ${{ github.event.actor.login }}
event_body: 'No event body.'
event_number: ${{ github.event.id }}
event_url: "${{ github.repositoryUrl }}"