Skip to content

Dummy pr to trigger CD #9

Dummy pr to trigger CD

Dummy pr to trigger CD #9

Workflow file for this run

name: Terraform Plan
on:
pull_request:
branches:
- main
jobs:
build:
name: tf plan
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
pull-requests: write
steps:
- uses: actions/[email protected]
- name: gcp auth (tf plan)
id: auth
uses: google-github-actions/auth@v2
with:
workload_identity_provider: projects/546928617664/locations/global/workloadIdentityPools/gha-terraform-checker-pool/providers/gha-terraform-checker-provider
service_account: gha-cloud-functions-deployment@jeffreyhung-test.iam.gserviceaccount.com
- name: terraform plan
id: terraform-plan
uses: dflook/terraform-plan@e047f3fa83b945d582e0b468f4ef3c22c03e070d # v1.36.2
if:
${{ steps.auth.outcome == 'success'}}
with:
add_github_comment: changes-only
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}