Skip to content

Commit 9d4ee93

Browse files
committed
Reverted to config.yml.
1 parent 42730f3 commit 9d4ee93

49 files changed

Lines changed: 68 additions & 68 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# The `nightly-db` workflow requires a schedule trigger configured in CircleCI UI.
1313
# Go to Project Settings > Triggers > Add Scheduled Trigger:
1414
# - Trigger name: nightly-db
15-
# - Config source: build-test-deploy.yml
15+
# - Config source: config.yml
1616
# - Branch: develop
1717
# - Schedule: Every day at 18:00 UTC (or a custom time)
1818
# See https://www.vortextemplate.com/docs/continuous-integration/circleci

.circleci/vortex-test-common.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Auto-generated by .vortex/tests/generate-vortex-dev-circleci
2-
# Source: .circleci/build-test-deploy.yml
2+
# Source: .circleci/config.yml
33
# Do not edit directly.
44
version: '2.1'
55

.vortex/docs/content/continuous-integration/circleci.mdx

Lines changed: 3 additions & 3 deletions

.vortex/installer/src/Prompts/Handlers/CiProvider.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ public function discover(): null|string|bool|array {
6060
return NULL;
6161
}
6262

63-
if (is_readable($this->dstDir . '/.github/workflows/build-test-deploy.yml')) {
63+
if (is_readable($this->dstDir . '/.github/workflows/config.yml')) {
6464
return self::GITHUB_ACTIONS;
6565
}
6666

67-
if (is_readable($this->dstDir . '/.circleci/build-test-deploy.yml') || is_readable($this->dstDir . '/.circleci/config.yml')) {
67+
if (is_readable($this->dstDir . '/.circleci/config.yml') || is_readable($this->dstDir . '/.circleci/config.yml')) {
6868
return self::CIRCLECI;
6969
}
7070

@@ -96,7 +96,7 @@ public function process(): void {
9696
}
9797

9898
if ($remove_gha) {
99-
File::remove($t . '/.github/workflows/build-test-deploy.yml');
99+
File::remove($t . '/.github/workflows/config.yml');
100100
File::remove($t . '/' . $this->webroot . '/sites/default/includes/providers/settings.gha.php');
101101
File::removeTokenAsync('CI_PROVIDER_GHA');
102102
File::removeTokenAsync('SETTINGS_PROVIDER_GHA');

.vortex/installer/src/Prompts/Handlers/DependencyUpdatesProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function discover(): null|string|bool|array {
6262
return self::RENOVATEBOT_CI;
6363
}
6464

65-
if (File::contains($this->dstDir . '/.circleci/build-test-deploy.yml', 'update-dependencies')
65+
if (File::contains($this->dstDir . '/.circleci/config.yml', 'update-dependencies')
6666
|| File::contains($this->dstDir . '/.circleci/config.yml', 'update-dependencies')) {
6767
return self::RENOVATEBOT_CI;
6868
}

.vortex/installer/tests/Fixtures/handler_process/ciprovider_circleci/.circleci/build-test-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# The `nightly-db` workflow requires a schedule trigger configured in CircleCI UI.
1313
# Go to Project Settings > Triggers > Add Scheduled Trigger:
1414
# - Trigger name: nightly-db
15-
# - Config source: build-test-deploy.yml
15+
# - Config source: config.yml
1616
# - Branch: develop
1717
# - Schedule: Every day at 18:00 UTC (or a custom time)
1818
# See https://www.vortextemplate.com/docs/continuous-integration/circleci

.vortex/installer/tests/Fixtures/handler_process/ciprovider_circleci/tests/phpunit/CircleCiConfigTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class CircleCiConfigTest extends TestCase {
3434
*/
3535
protected function setUp(): void {
3636
parent::setUp();
37-
$file = file_get_contents(__DIR__ . '/../../.circleci/build-test-deploy.yml');
37+
$file = file_get_contents(__DIR__ . '/../../.circleci/config.yml');
3838
if (!$file) {
3939
throw new \RuntimeException('Unable to read CircleCI config file.');
4040
}

.vortex/installer/tests/Fixtures/handler_process/deploy_types_all_circleci/.circleci/build-test-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# The `nightly-db` workflow requires a schedule trigger configured in CircleCI UI.
1313
# Go to Project Settings > Triggers > Add Scheduled Trigger:
1414
# - Trigger name: nightly-db
15-
# - Config source: build-test-deploy.yml
15+
# - Config source: config.yml
1616
# - Branch: develop
1717
# - Schedule: Every day at 18:00 UTC (or a custom time)
1818
# See https://www.vortextemplate.com/docs/continuous-integration/circleci

.vortex/installer/tests/Fixtures/handler_process/deploy_types_all_circleci/tests/phpunit/CircleCiConfigTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class CircleCiConfigTest extends TestCase {
3434
*/
3535
protected function setUp(): void {
3636
parent::setUp();
37-
$file = file_get_contents(__DIR__ . '/../../.circleci/build-test-deploy.yml');
37+
$file = file_get_contents(__DIR__ . '/../../.circleci/config.yml');
3838
if (!$file) {
3939
throw new \RuntimeException('Unable to read CircleCI config file.');
4040
}

.vortex/installer/tests/Fixtures/handler_process/deploy_types_none_circleci/.circleci/build-test-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# The `nightly-db` workflow requires a schedule trigger configured in CircleCI UI.
1313
# Go to Project Settings > Triggers > Add Scheduled Trigger:
1414
# - Trigger name: nightly-db
15-
# - Config source: build-test-deploy.yml
15+
# - Config source: config.yml
1616
# - Branch: develop
1717
# - Schedule: Every day at 18:00 UTC (or a custom time)
1818
# See https://www.vortextemplate.com/docs/continuous-integration/circleci

0 commit comments

Comments
 (0)