ruby-changes:60320
From: Takashi <ko1@a...>
Date: Sat, 7 Mar 2020 17:35:22 +0900 (JST)
Subject: [ruby-changes:60320] f9f3510e64 (master): Hook an experimental alert from Actions
https://git.ruby-lang.org/ruby.git/commit/?id=f9f3510e64 From f9f3510e64ca0f82f673f78a2279f654ba9fbe63 Mon Sep 17 00:00:00 2001 From: Takashi Kokubun <takashikkbn@g...> Date: Sat, 7 Mar 2020 00:34:41 -0800 Subject: Hook an experimental alert from Actions diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index f1294af..9970299 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -67,3 +67,16 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/macos.yml#L67 env: SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} if: failure() && github.event_name == 'push' + # New Slack notification (experimental) + - uses: k0kubun/action-slack@v... + with: + payload: | + { + "ci": "GitHub Actions", + "env": "${{ github.workflow }} / ${{ matrix.test_task }}", + "url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}", + "commit": "${{ github.sha }}" + } + env: + SLACK_WEBHOOK_URL: ${{ secrets.SIMPLER_ALERTS_URL }} + if: failure() && github.event_name == 'push' diff --git a/.github/workflows/mingw.yml b/.github/workflows/mingw.yml index 3bdb2f6..38432df7 100644 --- a/.github/workflows/mingw.yml +++ b/.github/workflows/mingw.yml @@ -152,3 +152,16 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/mingw.yml#L152 env: SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} if: failure() && github.event_name == 'push' + # New Slack notification (experimental) + - uses: k0kubun/action-slack@v... + with: + payload: | + { + "ci": "GitHub Actions", + "env": "${{ github.workflow }} / ${{ matrix.test_task }}", + "url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}", + "commit": "${{ github.sha }}" + } + env: + SLACK_WEBHOOK_URL: ${{ secrets.SIMPLER_ALERTS_URL }} + if: failure() && github.event_name == 'push' diff --git a/.github/workflows/mjit.yml b/.github/workflows/mjit.yml index 331bd16..0bd2f34 100644 --- a/.github/workflows/mjit.yml +++ b/.github/workflows/mjit.yml @@ -68,3 +68,16 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/mjit.yml#L68 env: SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} if: failure() && github.event_name == 'push' + # New Slack notification (experimental) + - uses: k0kubun/action-slack@v... + with: + payload: | + { + "ci": "GitHub Actions", + "env": "${{ github.workflow }} / ${{ matrix.test_task }} ${{ matrix.jit_opts }}", + "url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}", + "commit": "${{ github.sha }}" + } + env: + SLACK_WEBHOOK_URL: ${{ secrets.SIMPLER_ALERTS_URL }} + if: failure() && github.event_name == 'push' diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 6c122d1..9b4237d 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -81,3 +81,16 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/ubuntu.yml#L81 env: SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} if: failure() && github.event_name == 'push' + # New Slack notification (experimental) + - uses: k0kubun/action-slack@v... + with: + payload: | + { + "ci": "GitHub Actions", + "env": "${{ matrix.os }} / ${{ matrix.test_task }}", + "url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}", + "commit": "${{ github.sha }}" + } + env: + SLACK_WEBHOOK_URL: ${{ secrets.SIMPLER_ALERTS_URL }} + if: failure() && github.event_name == 'push' diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index ed2079a..fdac90c 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -84,3 +84,16 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/windows.yml#L84 env: SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} if: failure() && github.event_name == 'push' + # New Slack notification (experimental) + - uses: k0kubun/action-slack@v... + with: + payload: | + { + "ci": "GitHub Actions", + "env": "${{ matrix.os }} / ${{ matrix.test_task }}", + "url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}", + "commit": "${{ github.sha }}" + } + env: + SLACK_WEBHOOK_URL: ${{ secrets.SIMPLER_ALERTS_URL }} + if: failure() && github.event_name == 'push' -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/