From 4d7ba14f721d8b2248d24f93ca3b538514d19757 Mon Sep 17 00:00:00 2001 From: Liam Cervante Date: Thu, 6 Oct 2022 12:11:27 +0200 Subject: [PATCH] Add skeleton action for equivalence tests (#31940) --- .github/workflows/equivalence-test.yml | 27 ++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/equivalence-test.yml diff --git a/.github/workflows/equivalence-test.yml b/.github/workflows/equivalence-test.yml new file mode 100644 index 0000000000..07048d9ce3 --- /dev/null +++ b/.github/workflows/equivalence-test.yml @@ -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!"