chore: add tests

[skip ci]
This commit is contained in:
Marcel S. Henselin 2026-03-25 16:53:23 +01:00
parent ff144042ba
commit b06e7ffd40
4 changed files with 56 additions and 2 deletions

View file

@ -41,13 +41,13 @@ jobs:
webhookUrl: '${{ secrets.GOOGLE_WEBHOOK_URL }}'
jobStatus: '${{ job.status }}'
title: CLEAN-UP pipeline
subtitle: "${{ github.event_name }} with filter prefix <b>${{ inputs.res_prefix }}</b>"
subtitle: "${{ github.event_name }} with filter prefix \"${{ inputs.res_prefix }}\""
# - name: Notify
# uses: ./.github/actions/notify
# with:
# webhook_url: ${{ secrets.GOOGLE_WEBHOOK_URL }}
# title: CI pipeline started
# title: CLEAN-UP pipeline
# event_title: ${{ github.event.type }}
# event_author: ${{ github.event.actor.login }}
# event_body: "Filter: ${{ inputs.res_prefix }}"

View file

@ -30,6 +30,14 @@ jobs:
- name: Checkout
uses: actions/checkout@v6
- name: Notify Google Chat
if: ${{ always() }} # Use always to ensure that the notification is also send on failure of former steps
uses: SimonScholz/google-chat-action@main
with:
webhookUrl: '${{ secrets.GOOGLE_WEBHOOK_URL }}'
title: Acceptance Tests started
subtitle: "${{ github.event_name }}"
- name: Notify
uses: ./.github/actions/notify
with:
@ -71,6 +79,15 @@ jobs:
tf_acc_kek_key_version: ${{ vars.TF_ACC_KEK_KEY_VERSION }}
tf_acc_kek_service_account: ${{ vars.TF_ACC_KEK_SERVICE_ACCOUNT }}
- name: Notify Google Chat
if: ${{ always() }} # Use always to ensure that the notification is also send on failure of former steps
uses: SimonScholz/google-chat-action@main
with:
webhookUrl: '${{ secrets.GOOGLE_WEBHOOK_URL }}'
jobStatus: '${{ job.status }}'
title: Acceptance Tests started
subtitle: "${{ github.event_name }} finished"
- name: Notify
uses: ./.github/actions/notify
with: