chore: add tests
[skip ci]
This commit is contained in:
parent
ff144042ba
commit
b06e7ffd40
4 changed files with 56 additions and 2 deletions
17
.github/workflows/tf-acc-test.yaml
vendored
17
.github/workflows/tf-acc-test.yaml
vendored
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue