Skip to content

Commit

Permalink
test echo job status
Browse files Browse the repository at this point in the history
  • Loading branch information
oarbusi committed Mar 20, 2024
1 parent ae842e8 commit 4a83862
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/terraform-compatibility-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@ jobs:
outputs:
supported_versions: ${{ steps.get-terraform-supported-versions.outputs.supported_versions }}

slack-notification:
needs: ["run-test-supported-versions"]
runs-on: ubuntu-latest
steps:
- name: Send Notification
run: |
echo "Status of previous job: ${{ needs.get-supported-versions.status }}"
run-test-supported-versions:
needs: ["get-supported-versions"]
Expand All @@ -50,10 +57,4 @@ jobs:
terraform_matrix: '["${{ matrix.terraform_version }}"]'
atlas_cloud_env: ${{ inputs.atlas_cloud_env }}

slack-notification:
needs: ["run-test-supported-versions"]
runs-on: ubuntu-latest
steps:
- name: Send Notification
run: |
echo "Status of previous job: ${{ needs.run-test-supported-versions.status }}"

0 comments on commit 4a83862

Please sign in to comment.