From bab862334313c08ec4f218cb1de1774c9909e3be Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Tue, 28 Dec 2021 19:24:20 +0900 Subject: [PATCH] The `include`d set should be expanded values [ci skip] While the `matrix` level values are expanded from the production of each arrays, `include`d set should be consist from expanded single values. --- .github/workflows/mingw.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/mingw.yml b/.github/workflows/mingw.yml index 8efedae88b..05c813b498 100644 --- a/.github/workflows/mingw.yml +++ b/.github/workflows/mingw.yml @@ -37,10 +37,10 @@ jobs: include: - msystem: "MINGW64" base_ruby: 2.6 - test_task: [ "check" ] # to make job names consistent + test_task: "check" # to make job names consistent - msystem: "UCRT64" base_ruby: head - test_task: [ "check" ] # to make job names consistent + test_task: "check" # to make job names consistent fail-fast: false if: ${{ !startsWith(github.event.head_commit.message, '[DOC]') && !contains(github.event.pull_request.labels.*.name, 'Documentation') }} steps: @@ -133,7 +133,7 @@ jobs: payload: | { "ci": "GitHub Actions", - "env": "${{ github.workflow }} ${{ matrix.msystem }} / ${{ join(matrix.test_task) }}", + "env": "${{ github.workflow }} ${{ matrix.msystem }} / ${{ matrix.test_task }}", "url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}", "commit": "${{ github.sha }}", "branch": "${{ github.ref }}".split('/').reverse()[0]