Add skeleton action for equivalence tests (#31940)

This commit is contained in:
Liam Cervante 2022-10-06 12:11:27 +02:00 committed by GitHub
parent 1faa05b344
commit 4d7ba14f72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

27
.github/workflows/equivalence-test.yml vendored Normal file
View File

@ -0,0 +1,27 @@
name: Terraform Equivalence Tests
# This action will execute the suite of Terraform equivalence tests after a
# tag has been pushed for a new version.
#
# For now, it is just a skeleton action that will be populated shortly.
on:
workflow_dispatch:
inputs:
version:
required: true
description: "the Terraform version to equivalence test, eg. v1.3.1"
run-id:
required: true
description: "the run identifier of a successful `Build Terraform CLI Packages` action that contains artifacts for the target version"
permissions:
contents: read
jobs:
skeleton-job:
name: "Temporary job to be released with real work"
runs-on: ubuntu-latest
steps:
- run: echo "Hello, world!"