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.
This commit is contained in:
Nobuyoshi Nakada 2021-12-28 19:24:20 +09:00
Родитель bf97415c02
Коммит bab8623343
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7CD2805BFA3770C6
1 изменённых файлов: 3 добавлений и 3 удалений

6
.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]