diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 0b699c26..ea23d000 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -83,12 +83,12 @@ jobs: run: | if [ '${{ needs.publish_and_test_app.result }}' = 'success' ]; then aws cloudwatch put-metric-data --namespace 'ADOT/GitHubActions' \ - --metric-name Success \ + --metric-name Failure \ --dimensions repository=${{ github.repository }},branch=${{ github.ref_name }},workflow=integration-test \ - --value 1.0 + --value 0.0 else aws cloudwatch put-metric-data --namespace 'ADOT/GitHubActions' \ - --metric-name Success \ + --metric-name Failure \ --dimensions repository=${{ github.repository }},branch=${{ github.ref_name }},workflow=integration-test \ - --value 0.0 + --value 1.0 fi