Skip to content

Commit

Permalink
Merge branch '1.14' into 1
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 15, 2024
2 parents 0f0140a + 032919c commit 9094142
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
Create a dynamic Silverstripe CI matrix

Only intended to be used within [gha-ci](https://github.com/silverstripe/gha-ci). See that repository for details on inputs.

GitHub job permissions required: `none` for public repositories, `contents:read,pull-requests:read` for private repositories.
2 changes: 1 addition & 1 deletion job_creator.php
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public function createJob(int $phpIndex, array $opts): array
'js' => false,
'doclinting' => false,
// Needs full setup if installerVersion is set, OR this is a recipe
'needs_full_setup' => $this->installerVersion !== '' || (!empty($this->repoData) && $this->repoData['type'] === 'recipe'),
'needs_full_setup' => $this->installerVersion !== '' || (isset($this->repoData['type']) && $this->repoData['type'] === 'recipe'),
];
return array_merge($default, $opts);
}
Expand Down

0 comments on commit 9094142

Please sign in to comment.