Skip to content

Commit

Permalink
testing fromJSON
Browse files Browse the repository at this point in the history
  • Loading branch information
Sayali M authored and Sayali M committed Jun 17, 2024
1 parent cc9aad2 commit 46241b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ jobs:
echo "TEST_COUNT_JAVA_WINDOWS=$TEST_COUNT" | Out-File -Append -Encoding utf8 -FilePath $env:GITHUB_ENV
- name: Notify slack if Test Count decreases
if: ${{ env.TEST_COUNT_JAVA_MACOS < 5981 }} || ${{ env.TEST_COUNT_JAVA_UBUNTU < 5981 }} || ${{ env.TEST_COUNT_JAVA_WINDOWS < 5999 }}
if: ${{ fromJSON(env.TEST_COUNT_JAVA_WINDOWS) < 5999 || fromJSON(env.TEST_COUNT_JAVA_UBUNTU) < 5981 || fromJSON(env.TEST_COUNT_JAVA_MACOS) < 5981 }}
uses: rtCamp/action-slack-notify@v2
env:
SLACK_WEBHOOK: ${{ secrets.NIGHTLY_BUILDS_SLACK_WEBHOOK }}
Expand Down Expand Up @@ -353,7 +353,7 @@ jobs:
echo "TEST_COUNT_INTEGRATION=$TEST_COUNT" >> $GITHUB_ENV
- name: Notify slack if Test Count decreases
if: ${{ env.TEST_COUNT_INTEGRATION < 739 }}
if: ${{ fromJSON(env.TEST_COUNT_INTEGRATION) < 739 }}
uses: rtCamp/action-slack-notify@v2
env:
SLACK_WEBHOOK: ${{ secrets.NIGHTLY_BUILDS_SLACK_WEBHOOK }}
Expand Down

0 comments on commit 46241b6

Please sign in to comment.