Update release script to use trunk instead of master

[MAILPOET-3466]
This commit is contained in:
Rodrigo Primo
2022-05-31 10:12:17 +01:00
committed by Rodrigo Primo
parent df62347116
commit e56e2db9ef
2 changed files with 4 additions and 4 deletions

View File

@@ -44,7 +44,7 @@ class GitHubController {
'json' => [
'title' => 'Release ' . $version,
'head' => self::RELEASE_SOURCE_BRANCH,
'base' => 'master',
'base' => 'trunk',
],
]);
$response = json_decode($response->getBody()->getContents(), true);
@@ -69,7 +69,7 @@ class GitHubController {
'query' => [
'state' => 'all',
'head' => self::RELEASE_SOURCE_BRANCH,
'base' => 'master',
'base' => 'trunk',
'direction' => 'desc',
],
]);