Update terraform and workflow to deploy Reporting V2 #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Reporting V2 Testing | ||
on: | ||
pull_request: | ||
inputs: | ||
environment: | ||
type: string | ||
required: true | ||
apply: | ||
description: "Apply the new configuration" | ||
type: boolean | ||
required: true | ||
jobs: | ||
terraform: | ||
uses: ./.github/workflows/terraform-cmms.yml | ||
secrets: inherit | ||
with: | ||
environment: ${{ inputs.environment }} | ||
apply: ${{ inputs.apply }} | ||
update-reporting-v2: | ||
uses: ./.github/workflows/configure-reporting-v2.yml | ||
needs: [ publish-images, terraform ] | ||
Check failure on line 24 in .github/workflows/reporting-v2-testing.yml GitHub Actions / Reporting V2 TestingInvalid workflow file
|
||
with: | ||
image-tag: ${{ needs.publish-images.outputs.image-tag }} | ||
environment: ${{ inputs.environment }} | ||
apply: ${{ inputs.apply }} |