1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

The included 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.
This commit is contained in:
Nobuyoshi Nakada 2021-12-28 19:24:20 +09:00
parent bf97415c02
commit bab8623343
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

View file

@ -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]