From 38c35dd22d0d792309873fb5232758646c1f8569 Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Mon, 30 Dec 2019 23:46:17 -0800 Subject: Make Slack notifications consistent --- .github/workflows/mingw.yml | 17 ++++++++++++++++- .github/workflows/mjit.yml | 4 ++-- 2 files changed, 18 insertions(+), 3 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/mingw.yml b/.github/workflows/mingw.yml index 3e9db003a6..89ece0d013 100644 --- a/.github/workflows/mingw.yml +++ b/.github/workflows/mingw.yml @@ -28,7 +28,7 @@ jobs: UPDATE_UNICODE: "UNICODE_FILES=. UNICODE_PROPERTY_FILES=. UNICODE_AUXILIARY_FILES=. UNICODE_EMOJI_FILES=." strategy: matrix: - test_task: [ "check" ] # not used, but to make job names consistent + test_task: [ "check" ] # to make job names consistent fail-fast: false if: "!contains(github.event.head_commit.message, '[ci skip]')" steps: @@ -133,3 +133,18 @@ jobs: [Console]::InputEncoding = [System.Text.Encoding]::GetEncoding("IBM437") $jobs = [int]$env:NUMBER_OF_PROCESSORS make -C build test-all TESTOPTS="--retry --job-status=normal --show-skip --timeout-scale=1.5 --excludes=../src/test/excludes -n !/memory_leak/ -j $jobs" + + - uses: k0kubun/action-slack@v2.0.0 + with: + payload: | + { + "attachments": [{ + "text": "${{ job.status }}: ${{ github.workflow }} / ${{ matrix.test_task }} " + + "() " + + "of ${{ github.repository }}@" + "${{ github.ref }}".split('/').reverse()[0] + " by ${{ github.event.head_commit.committer.name }}", + "color": "danger" + }] + } + env: + SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} + if: failure() && github.event_name == 'push' diff --git a/.github/workflows/mjit.yml b/.github/workflows/mjit.yml index d6ebcaf75f..cdb41701de 100644 --- a/.github/workflows/mjit.yml +++ b/.github/workflows/mjit.yml @@ -10,7 +10,7 @@ jobs: make: strategy: matrix: - test_task: [ "check" ] # not used, but to make job names consistent + test_task: [ "check" ] # to make job names consistent jit_opts: [ "--jit", "--jit-wait" ] fail-fast: false runs-on: ubuntu-latest @@ -69,7 +69,7 @@ jobs: payload: | { "attachments": [{ - "text": "${{ job.status }}: ${{ github.workflow }} / ${{ matrix.jit_opts }} " + + "text": "${{ job.status }}: ${{ github.workflow }} / ${{ matrix.test_task }} ${{ matrix.jit_opts }} " + "() " + "of ${{ github.repository }}@" + "${{ github.ref }}".split('/').reverse()[0] + " by ${{ github.event.head_commit.committer.name }}", "color": "danger" -- cgit v1.2.3