From 8c030df0e40d066d66bbbe69ba1c6582b50756a3 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Thu, 21 Jan 2021 10:57:09 +0000 Subject: [PATCH] Enabled test suite for 4.0 branch no issue - we'd like to run the tests on the new 4.0 branch, so this commit add it to the trigger list and allows Slack notifications for failures --- .github/workflows/test.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cd18fae45..3d4dd8096 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,6 +4,7 @@ on: push: branches: - master + - '4.0' - 'renovate/*' jobs: prod-build: @@ -20,7 +21,7 @@ jobs: - run: grunt shell:ember:prod - uses: daniellockyer/action-slack-build@master - if: failure() && github.event_name == 'push' && github.ref == 'refs/heads/master' + if: failure() && github.event_name == 'push' && (github.ref == 'refs/heads/4.0' || github.ref == 'refs/heads/master') with: status: ${{ job.status }} env: @@ -39,7 +40,7 @@ jobs: - run: yarn lint:js - uses: daniellockyer/action-slack-build@master - if: failure() && github.event_name == 'push' && github.ref == 'refs/heads/master' + if: failure() && github.event_name == 'push' && (github.ref == 'refs/heads/4.0' || github.ref == 'refs/heads/master') with: status: ${{ job.status }} env: @@ -67,7 +68,7 @@ jobs: BROWSER: ${{ matrix.browser }} - uses: daniellockyer/action-slack-build@master - if: failure() && github.event_name == 'push' && github.ref == 'refs/heads/master' + if: failure() && github.event_name == 'push' && (github.ref == 'refs/heads/4.0' || github.ref == 'refs/heads/master') with: status: ${{ job.status }} env: