Some checks failed
CI Workflow / Check GoReleaser config (pull_request) Failing after 1m43s
Publish / Check GoReleaser config (push) Failing after 1m19s
Publish / Publish provider (push) Has been skipped
CI Workflow / Prepare GO cache (pull_request) Successful in 6m55s
CI Workflow / Test readiness for publishing provider (pull_request) Has been skipped
CI Workflow / CI run tests (pull_request) Has been skipped
CI Workflow / CI run build and linting (pull_request) Has been skipped
CI Workflow / Code coverage report (pull_request) Has been skipped
TF Acceptance Tests Workflow / Acceptance Tests (pull_request) Failing after 28m45s
fix: implement sql server 200 error
25 lines
595 B
YAML
25 lines
595 B
YAML
name: TF Acceptance Test CleanUp
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
list_only:
|
|
description: "only list resources"
|
|
default: 'true'
|
|
required: true
|
|
|
|
jobs:
|
|
clean:
|
|
name: Clean up
|
|
runs-on: stackit-docker
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Clean
|
|
uses: ./.github/actions/clean_up
|
|
with:
|
|
project_id: ${{ vars.TF_ACC_PROJECT_ID }}
|
|
region: 'eu01'
|
|
tf_resource_prefix: 'tf-acc-'
|
|
service_account_json_content_b64: "${{ secrets.TF_ACC_SERVICE_ACCOUNT_JSON_B64 }}"
|