Skip to content

Commit ec5a11b

Browse files
committed
Fixes
1 parent 39360f9 commit ec5a11b

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

console/create.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -256,15 +256,6 @@ private function handle_github_actions(): void
256256
$this->data['components']['githubactions'] = false;
257257
$this->data['components']['githubactions_custom'] = false;
258258

259-
// Initialize both flags to false
260-
$this->data['components'] = array_merge(
261-
$this->data['components'],
262-
[
263-
'githubactions' => false,
264-
'githubactions_custom' => false
265-
]
266-
);
267-
268259
if ($index === 1)
269260
{
270261
$this->data['components']['githubactions'] = true;

tests/console/create_test.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public function setUp(): void
9393
],
9494
'githubactions' => [
9595
'default' => false,
96-
'dependencies' => ['tests'],
96+
'dependencies' => [],
9797
'files' => ['.github/workflows/tests.yml'],
9898
'group' => 'TEST_DEPLOY',
9999
],
@@ -184,7 +184,7 @@ public function get_questions()
184184
// 'SKELETON_QUESTION_COMPONENT_NOTIFICATION' => 'y',
185185
// 'SKELETON_QUESTION_COMPONENT_PERMISSIONS' => 'y',
186186
'SKELETON_QUESTION_COMPONENT_TESTS' => 'y',
187-
'SKELETON_QUESTION_COMPONENT_GITHUBACTIONS' => 2,
187+
'SKELETON_QUESTION_COMPONENT_GITHUBACTIONS' => 0,
188188
// 'SKELETON_QUESTION_COMPONENT_BUILD' => 'y',
189189
];
190190
}

0 commit comments

Comments
 (0)