-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | | ||
| :----------------: | :--------------------------------: | | ||
|
@@ -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: | | ||
|