ruby-changes:70637
From: Nobuyoshi <ko1@a...>
Date: Tue, 28 Dec 2021 19:30:17 +0900 (JST)
Subject: [ruby-changes:70637] bab8623343 (master): The `include`d set should be expanded values [ci skip]
https://git.ruby-lang.org/ruby.git/commit/?id=bab8623343 From bab862334313c08ec4f218cb1de1774c9909e3be Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada <nobu@r...> Date: Tue, 28 Dec 2021 19:24:20 +0900 Subject: 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 8efedae88b6..05c813b4984 100644 --- a/.github/workflows/mingw.yml +++ b/.github/workflows/mingw.yml @@ -37,10 +37,10 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/mingw.yml#L37 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: https://github.com/ruby/ruby/blob/trunk/.github/workflows/mingw.yml#L133 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] -- cgit v1.2.1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/