refactor(core): Add deprecation notice for own mode (#6195)

* refactor: Add deprecation notice for own mode

* Undo default value change
This commit is contained in:
Omar Ajoue
2023-05-08 15:03:44 +02:00
committed by GitHub
parent b499d27f08
commit 1da71645f2
2 changed files with 6 additions and 1 deletions

View File

@@ -229,7 +229,7 @@ export const schema = {
// If this option gets set to "main" it will run them in the
// main-process instead.
process: {
doc: 'In what process workflows should be executed',
doc: 'In what process workflows should be executed. Note: Own mode has been deprecated and will be removed in a future version as well as this setting.',
format: ['main', 'own'] as const,
default: IS_V1_RELEASE ? 'main' : 'own',
env: 'EXECUTIONS_PROCESS',