Skip to content

Commit

Permalink
Merge pull request #18 from delhage/test
Browse files Browse the repository at this point in the history
Test wf
  • Loading branch information
delhage authored Jan 10, 2024
2 parents 2f9a26e + 565a30a commit d6964f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/terraform_template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
required: true
terraform_apply:
description: Should we run terraform apply?
type: string
type: boolean
default: false
required: false
environment:
Expand All @@ -20,12 +20,12 @@ on:

jobs:
terraform:
name: "Terraform apply ${{ inputs.host }}"
name: "Terraform plan ${{ inputs.host }}"
runs-on: ubuntu-22.04

steps:
- name: "Checkout code"
uses: actions/checkout@v4

- name: "Terraform init, plan ${{ inputs.terraform_apply == 'true' && 'and apply' }} "
- name: "Terraform init, plan ${{ inputs.terraform_apply == 'true' && 'and apply' || '' }} "
run: echo Testing

0 comments on commit d6964f1

Please sign in to comment.