Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOE-286 Rename the Terraform checks #10

Merged
merged 2 commits into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/_test-terraform-plan-apply.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
- .github/workflows/terraform-plan-apply.yml
- .github/workflows/_test-terraform-plan-apply.yml
- .github/workflows/terraform-core.yml
- .github/workflows/terraform-code-check.yml

jobs:
deploy_tf_stacks_regression_test:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/terraform-code-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ jobs:
uses: ukhsa-collaboration/devops-github-actions/.github/actions/[email protected]
id: create_check
with:
name: "terraform-checks"
name: "Terraform Checks - ${{ inputs.stack_root_directory }}"
status: "in_progress"
title: "Terraform code checks"
summary: "Terraform code checks are currently in-progress"
title: "Terraform code checks for ${{ inputs.stack_root_directory }}"
summary: "Terraform code checks for the ${{ inputs.stack_root_directory }} stack are currently in-progress"
details: |
| Check | Status |
| :----------------: | :--------------------------------: |
Expand Down Expand Up @@ -123,10 +123,10 @@ jobs:
- name: Update check with result
uses: ukhsa-collaboration/devops-github-actions/.github/actions/[email protected]
with:
name: "terraform-checks"
name: "Terraform Checks - ${{ inputs.stack_root_directory }}"
status: "completed"
title: "Terraform code checks"
summary: "Terraform code checks have completed"
title: "Terraform code checks for ${{ inputs.stack_root_directory }}"
summary: "Terraform code checks for the ${{ inputs.stack_root_directory }} stack have completed"
conclusion: "${{ env.job_status }}"
check-run-id: ${{ steps.create_check.outputs.check-run-id }}
details: |
Expand Down
Loading