Skip to content

Commit 3df116e

Browse files
committed
Fix
1 parent a75d8fb commit 3df116e

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.github/workflows/build-issue-bot.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ on:
1414
- 'issue-bot/**'
1515
- '.github/workflows/build-issue-bot.yml'
1616

17+
env:
18+
COMPOSER_ROOT_VERSION: "1.9.x-dev"
19+
1720
concurrency:
1821
group: issue-bot-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches
1922
cancel-in-progress: true

.github/workflows/issue-bot.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ on:
1616
- 'apigen/**'
1717
- 'changelog-generator/**'
1818

19+
env:
20+
COMPOSER_ROOT_VERSION: "1.9.x-dev"
21+
1922
concurrency:
2023
group: tests-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches
2124
cancel-in-progress: true

issue-bot/src/Console/DownloadCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
9191

9292
$matrix = [
9393
'phpVersion' => [70200, 70300, 70400, 80000, 80100, 80200],
94-
'playgroundExamples' => array_chunk($hashes, $chunkSize),
94+
'playgroundExamples' => implode(',', array_chunk($hashes, $chunkSize)),
9595
];
9696

9797
$output->writeln(Json::encode($matrix));

0 commit comments

Comments
 (0)