Skip to content

Commit

Permalink
tweak notification condition
Browse files Browse the repository at this point in the history
  • Loading branch information
ztanner committed Jun 11, 2024
1 parent b8be05c commit 50080bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test_e2e_deploy_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
strategy:
fail-fast: true
matrix:
group: [1/5, 2/5, 3/5, 4/5, 5/5, 6/6]
group: [1/6, 2/6, 3/6, 4/6, 5/6, 6/6]
with:
afterBuild: NEXT_TEST_MODE=deploy NEXT_EXTERNAL_TESTS_FILTERS="test/deploy-tests-manifest.json" node run-tests.js --timings -g ${{ matrix.group }} -c 2 --type e2e
skipNativeBuild: 'yes'
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
report-failure:
name: report failure to slack
needs: test-deploy
if: needs.test-deploy.conclusion == 'failure'
if: ${{ always() && contains(needs.*.result, 'failure') }}
runs-on: ubuntu-latest
steps:
- name: send webhook
Expand Down

0 comments on commit 50080bf

Please sign in to comment.