├── .editorconfig ├── .gitignore ├── .husky └── pre-commit ├── .lintstagedrc.json ├── .storybook ├── deploy-storybook.js ├── main.ts ├── preview.tsx └── public │ └── mockServiceWorker.js ├── .tool-versions ├── LICENSE ├── README.md ├── _scripts ├── compile_api.sh ├── forkpty-Darwin-x86_64 ├── forkpty-run.sh ├── run_api.sh ├── set_version.go └── set_version.sh ├── apiserver ├── api_server.go ├── config │ └── config.go ├── routes.go ├── service │ ├── bitrise_config.go │ ├── bitrise_config_test.go │ ├── bitrise_secrets.go │ ├── bitrise_secrets_test.go │ ├── common.go │ ├── connection.go │ ├── default_options.go │ ├── default_options_test.go │ ├── step_info.go │ ├── step_info_test.go │ ├── steplib_spec.go │ ├── steplib_spec_test.go │ ├── test-step │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bitrise.yml │ │ ├── step.sh │ │ └── step.yml │ └── testdata │ │ └── bitrise.yml ├── tools │ └── tools.go └── utility │ ├── utility.go │ └── utility_test.go ├── bitrise-plugin.yml ├── bitrise.yml ├── cmd ├── root.go └── version.go ├── eslint.config.mjs ├── go.mod ├── go.sum ├── gows.yml ├── jest.config.cjs ├── knip.json ├── main.go ├── package.json ├── playwright.config.ts ├── release ├── discuss_release.mustache └── github_release.mustache ├── release_config.yml ├── renovate.json ├── source ├── images │ ├── arrow-down-dark.svg │ ├── bitrise-logo.svg │ ├── error-hairball.svg │ ├── favicons │ │ ├── apple-touch-icon.png │ │ └── favicon.ico │ ├── logo │ │ ├── android.svg │ │ ├── apple.svg │ │ ├── cordova.svg │ │ ├── flutter.svg │ │ ├── github.svg │ │ ├── ionic.svg │ │ ├── macos.svg │ │ ├── other.svg │ │ ├── react.svg │ │ └── xamarin.svg │ └── step │ │ ├── badge-community_created.svg │ │ ├── badge-deprecated.svg │ │ ├── clone.svg │ │ ├── icon-default.svg │ │ ├── latest.svg │ │ └── upgrade.svg ├── index.html └── javascripts │ ├── components │ ├── AutoGrowableInput.tsx │ ├── ConfigMergeDialog │ │ ├── ConfigMergeDialog.mocks.ts │ │ ├── ConfigMergeDialog.store.ts │ │ ├── ConfigMergeDialog.stories.tsx │ │ └── ConfigMergeDialog.tsx │ ├── DetailedHelperText.tsx │ ├── DiffEditor │ │ ├── DiffEditor.stories.tsx │ │ ├── DiffEditor.tsx │ │ ├── DiffEditorDialog.stories.tsx │ │ └── DiffEditorDialog.tsx │ ├── Discardable.tsx │ ├── DragHandle │ │ ├── DragHandle.tsx │ │ └── DragHandleIcon.tsx │ ├── EditableInput │ │ ├── EditableInput.stories.tsx │ │ └── EditableInput.tsx │ ├── Header.stories.tsx │ ├── Header.tsx │ ├── LazyRoute.tsx │ ├── LoadingState.tsx │ ├── Navigation.tsx │ ├── SortableEnvVars │ │ ├── SortableEnvVarItem.tsx │ │ ├── SortableEnvVars.events.ts │ │ ├── SortableEnvVars.tsx │ │ └── useSortableEnvVars.ts │ ├── StacksAndMachine │ │ ├── DefaultStackAndMachine.tsx │ │ ├── DeprecatedMachineNotification.tsx │ │ ├── MachineTypeSelector.tsx │ │ ├── StackAndMachine.tsx │ │ ├── StackAndMachineWrapper.tsx │ │ ├── StackSelector.tsx │ │ └── WorkflowStackAndMachine.tsx │ ├── StepBadge.tsx │ ├── VariablePopover │ │ ├── EnvVarPopover.stories.tsx │ │ ├── EnvVarPopover.tsx │ │ ├── SecretPopover.stories.tsx │ │ ├── SecretPopover.tsx │ │ ├── components │ │ │ ├── CreateEnvVar.tsx │ │ │ ├── CreateSecret.tsx │ │ │ ├── FilterInput.tsx │ │ │ └── LoadingState.tsx │ │ ├── hooks │ │ │ ├── useFilterableActionList.ts │ │ │ └── useMultiModePopover.ts │ │ └── index.ts │ ├── YmlValidationBadge.tsx │ ├── tabs │ │ ├── TabContainer.tsx │ │ └── TabHeader.tsx │ └── unified-editor │ │ ├── ChainWorkflowDrawer │ │ ├── ChainWorkflowDrawer.stories.tsx │ │ ├── ChainWorkflowDrawer.tsx │ │ └── components │ │ │ ├── ChainableWorkflowCard.tsx │ │ │ └── ChainableWorkflowList.tsx │ │ ├── CreateEntityDialog │ │ ├── CreateEntityDialog.stories.tsx │ │ └── CreateEntityDialog.tsx │ │ ├── CreateStepBundleDialog │ │ ├── CreateStepBundleDialog.stories.tsx │ │ └── CreateStepBundleDialog.tsx │ │ ├── CreateWorkflowDialog │ │ ├── CreateWorkflowDialog.stories.tsx │ │ └── CreateWorkflowDialog.tsx │ │ ├── DeleteStepBundleDialog │ │ ├── DeleteStepBundleDialog.stories.tsx │ │ └── DeleteStepBundleDialog.tsx │ │ ├── DeleteWorkflowDialog │ │ ├── DeleteWorkflowDialog.stories.tsx │ │ └── DeleteWorkflowDialog.tsx │ │ ├── EntitySelector │ │ ├── EntitySelector.stories.tsx │ │ └── EntitySelector.tsx │ │ ├── FloatingDrawer │ │ └── FloatingDrawer.tsx │ │ ├── PriorityInput │ │ └── PriorityInput.tsx │ │ ├── StartBuildDialog │ │ ├── StartBuildDialog.stories.tsx │ │ ├── StartBuildDialog.tsx │ │ └── useStartBuild.ts │ │ ├── StepBundleConfig │ │ ├── StepBundleConfig.context.tsx │ │ ├── StepBundleConfigContent.tsx │ │ ├── StepBundleConfigDrawer.stories.tsx │ │ ├── StepBundleConfigDrawer.tsx │ │ ├── StepBundleConfigHeader.tsx │ │ ├── StepBundleConfigInputs.tsx │ │ ├── StepBundleConfigPanel.tsx │ │ ├── StepBundleConfigurationTab.tsx │ │ ├── StepBundleInputs │ │ │ ├── StepBundleInputsCategoryCard.tsx │ │ │ └── StepBundleInputsDialog.tsx │ │ ├── StepBundlePropertiesTab.tsx │ │ ├── hooks │ │ │ ├── useChangeStepBundleId.ts │ │ │ └── useStepBundleInputs.ts │ │ ├── types │ │ │ └── StepBundle.types.ts │ │ └── utils │ │ │ └── StepBundle.utils.ts │ │ ├── StepConfigDrawer │ │ ├── StepConfigDrawer.context.tsx │ │ ├── StepConfigDrawer.stories.tsx │ │ ├── StepConfigDrawer.tsx │ │ ├── components │ │ │ ├── SensitiveBadge.tsx │ │ │ ├── StepCodeEditor.tsx │ │ │ ├── StepHelperText.tsx │ │ │ ├── StepInput.tsx │ │ │ ├── StepInputGroup.tsx │ │ │ └── StepSelectInput.tsx │ │ └── tabs │ │ │ ├── ConfigurationTab.tsx │ │ │ ├── OutputVariablesTab.tsx │ │ │ └── PropertiesTab.tsx │ │ ├── StepSelectorDrawer │ │ ├── StepSelectorDrawer.stories.tsx │ │ ├── StepSelectorDrawer.tsx │ │ ├── StepSelectorDrawer.types.ts │ │ ├── components │ │ │ ├── AlgoliaStepList.const.ts │ │ │ ├── AlgoliaStepList.tsx │ │ │ ├── AlgoliaStepListEmptyState.tsx │ │ │ ├── AlgoliaStepListErrorState.tsx │ │ │ ├── AlgoliaStepListItem.tsx │ │ │ ├── AlgoliaStepListItems.tsx │ │ │ ├── AlgoliaStepListLoadingState.tsx │ │ │ ├── SelectableStepBundleCard.tsx │ │ │ ├── StepBundleCard.tsx │ │ │ ├── StepBundleFilter.tsx │ │ │ ├── StepBundleList.tsx │ │ │ └── StepFilter.tsx │ │ └── hooks │ │ │ ├── useCalculateColumns.ts │ │ │ ├── useDebouncedFilter.ts │ │ │ ├── useSearch.ts │ │ │ ├── useSearchAlgoliaSteps.ts │ │ │ └── useVirtualItems.ts │ │ ├── Triggers │ │ ├── ConditionCard.tsx │ │ ├── TargetBasedTriggers │ │ │ ├── AddOrEditTriggerDialog.tsx │ │ │ ├── TargerBasedTriggerItem.tsx │ │ │ ├── TargetBasedTriggerNotification.tsx │ │ │ ├── TargetBasedTriggersCard.tsx │ │ │ ├── TargetBasedTriggersTabContent.tsx │ │ │ ├── TriggerFormBody.tsx │ │ │ └── TriggerFormFooter.tsx │ │ └── TriggerConditions.tsx │ │ ├── UpdateConfigurationDialog │ │ ├── UpdateConfigurationDialog.stories.tsx │ │ ├── UpdateConfigurationDialog.tsx │ │ └── YmlDialogErrorNotification.tsx │ │ ├── VersionChangedDialog │ │ ├── VersionChangedDialog.stories.tsx │ │ └── VersionChangedDialog.tsx │ │ ├── WhenToRunCard │ │ └── WhenToRunCard.tsx │ │ ├── WithGroupDrawer │ │ ├── WithGroupDrawer.stories.tsx │ │ └── WithGroupDrawer.tsx │ │ ├── WorkflowCard │ │ ├── WorkflowCard.const.ts │ │ ├── WorkflowCard.stories.tsx │ │ ├── WorkflowCard.tsx │ │ ├── WorkflowCard.types.ts │ │ ├── components │ │ │ ├── AddStepButton.stories.tsx │ │ │ ├── AddStepButton.tsx │ │ │ ├── ChainedWorkflowCard.tsx │ │ │ ├── ChainedWorkflowList.tsx │ │ │ ├── Droppable.tsx │ │ │ ├── ScaledDragOverlay.tsx │ │ │ ├── SortableWorkflowsContext.tsx │ │ │ ├── StepBundleStepList.tsx │ │ │ ├── StepCard.tsx │ │ │ ├── StepList.tsx │ │ │ ├── StepListItem.tsx │ │ │ ├── StepMenu.tsx │ │ │ └── WorkflowStepList.tsx │ │ ├── contexts │ │ │ └── WorkflowCardContext.tsx │ │ └── hooks │ │ │ └── useReactFlowZoom.ts │ │ ├── WorkflowConfig │ │ ├── WorkflowConfig.context.tsx │ │ ├── WorkflowConfig.types.ts │ │ ├── WorkflowConfigDrawer.tsx │ │ ├── WorkflowConfigPanel.tsx │ │ ├── components │ │ │ ├── EnvVarsCard.tsx │ │ │ ├── GitStatusNameInput.tsx │ │ │ ├── PipelineConditionsCard.stories.tsx │ │ │ ├── PipelineConditionsCard.tsx │ │ │ ├── StackAndMachineCard.tsx │ │ │ └── WorkflowConfigHeader.tsx │ │ ├── hooks │ │ │ └── useRenameWorkflow.ts │ │ └── tabs │ │ │ ├── ConfigurationTab.tsx │ │ │ ├── PropertiesTab.tsx │ │ │ └── TriggersTab.tsx │ │ └── WorkflowEmptyState.tsx │ ├── core │ ├── analytics │ │ ├── PipelineAnalytics.ts │ │ ├── SegmentBaseTracking.ts │ │ ├── TriggerAnalytics.ts │ │ └── WorkflowAnalytics.ts │ ├── api │ │ ├── AlgoliaApi.ts │ │ ├── BitriseYmlApi.ts │ │ ├── BitriseYmlSettingsApi.ts │ │ ├── BuildApi.mswMocks.ts │ │ ├── BuildApi.ts │ │ ├── EnvVarsApi.mswMocks.ts │ │ ├── EnvVarsApi.ts │ │ ├── LicensePoolsApi.mswMocks.ts │ │ ├── LicensePoolsApi.ts │ │ ├── SecretApi.mswMocks.ts │ │ ├── SecretApi.ts │ │ ├── StacksAndMachinesApi.mswMocks.ts │ │ ├── StacksAndMachinesApi.ts │ │ ├── StepApi.mswMocks.ts │ │ ├── StepApi.ts │ │ ├── UserApi.ts │ │ └── client.ts │ ├── models │ │ ├── BitriseYml.ts │ │ ├── BitriseYmlSettings.ts │ │ ├── EnvVar.ts │ │ ├── LicensePool.ts │ │ ├── Secret.ts │ │ ├── StackAndMachine.ts │ │ ├── Stage.ts │ │ ├── Step.ts │ │ ├── StepBundle.ts │ │ ├── Trigger.legacy.ts │ │ ├── Trigger.ts │ │ └── Workflow.ts │ ├── services │ │ ├── BitriseYmlService.spec.ts │ │ ├── BitriseYmlService.ts │ │ ├── EnvVarService.spec.ts │ │ ├── EnvVarService.ts │ │ ├── PipelineService.spec.ts │ │ ├── PipelineService.ts │ │ ├── SecretService.ts │ │ ├── StackAndMachineService.spec.ts │ │ ├── StackAndMachineService.ts │ │ ├── StepBundleService.spec.ts │ │ ├── StepBundleService.ts │ │ ├── StepService.spec.ts │ │ ├── StepService.ts │ │ ├── StepVariableService.spec.ts │ │ ├── StepVariableService.ts │ │ ├── TriggerService.spec.ts │ │ ├── TriggerService.ts │ │ ├── WorkflowService.spec.ts │ │ └── WorkflowService.ts │ ├── stores │ │ └── BitriseYmlStore.ts │ └── utils │ │ ├── CommonUtils.ts │ │ ├── GlobalProps.ts │ │ ├── MonacoUtils.ts │ │ ├── PageProps.ts │ │ ├── RuntimeUtils.spec.ts │ │ ├── RuntimeUtils.ts │ │ ├── VersionUtils.spec.ts │ │ ├── VersionUtils.ts │ │ ├── WindowUtils.ts │ │ ├── YmlUtils.spec.ts │ │ └── YmlUtils.ts │ ├── hooks │ ├── useAlgolia.ts │ ├── useBitriseYmlStore.ts │ ├── useChainableWorkflows.ts │ ├── useCiConfig.ts │ ├── useCiConfigSettings.ts │ ├── useCurrentPage.ts │ ├── useDebouncedFormValues.ts │ ├── useDefaultStepLibrary.ts │ ├── useDependantWorkflows.ts │ ├── useEnvVars.ts │ ├── useFeatureFlag.ts │ ├── useHashLocation.ts │ ├── useHashSearch.ts │ ├── useIsTruncated.ts │ ├── useLegacyTriggers.ts │ ├── useLicensePools.ts │ ├── useNavigation.ts │ ├── usePipelineIds.ts │ ├── usePipelines.ts │ ├── useProjectStackAndMachine.ts │ ├── useSearchParams.ts │ ├── useSecrets.ts │ ├── useSelectedStepBundle.ts │ ├── useSelectedWorkflow.ts │ ├── useShallow.ts │ ├── useStacksAndMachines.ts │ ├── useStep.ts │ ├── useStepBundle.ts │ ├── useStepBundles.ts │ ├── useTargetBasedTriggers.ts │ ├── useUniqueStepIds.ts │ ├── useUserMetaData.ts │ ├── useWorkflow.ts │ ├── useWorkflowIds.ts │ ├── useWorkflowStackAndMachine.ts │ ├── useWorkflowStackName.ts │ ├── useWorkflows.ts │ ├── useYmlHasChanges.ts │ └── useYmlValidationStatus.ts │ ├── layouts │ └── MainLayout.tsx │ ├── lib │ ├── clarity.js │ └── datadog-rum.js │ ├── main.tsx │ ├── monaco-workers.ts │ ├── pages │ ├── EnvVarsPage │ │ ├── EnvVarsPage.stories.tsx │ │ ├── EnvVarsPage.tsx │ │ ├── components │ │ │ ├── EnvVarsTable.tsx │ │ │ └── PrivateInfoNotification.tsx │ │ └── tabs │ │ │ ├── ProjectTab.tsx │ │ │ └── WorkflowsTab.tsx │ ├── LicensesPage │ │ ├── LicensesPage.stories.tsx │ │ └── LicensesPage.tsx │ ├── PipelinesPage │ │ ├── PipelinesPage.store.tsx │ │ ├── PipelinesPage.stories.tsx │ │ ├── PipelinesPage.tsx │ │ ├── assets │ │ │ └── graph-pipeline.png │ │ ├── components │ │ │ ├── CreatePipelineDialog │ │ │ │ ├── CreatePipelineDialog.stories.tsx │ │ │ │ └── CreatePipelineDialog.tsx │ │ │ ├── Drawers │ │ │ │ └── Drawers.tsx │ │ │ ├── EmptyStates │ │ │ │ ├── CreateFirstGraphPipelineEmptyState.stories.tsx │ │ │ │ ├── CreateFirstGraphPipelineEmptyState.tsx │ │ │ │ ├── GraphPipelineCanvasEmptyState.stories.tsx │ │ │ │ ├── GraphPipelineCanvasEmptyState.tsx │ │ │ │ ├── ReactivatePlanEmptyState.stories.tsx │ │ │ │ ├── ReactivatePlanEmptyState.tsx │ │ │ │ ├── UpgradePlanEmptyState.stories.tsx │ │ │ │ └── UpgradePlanEmptyState.tsx │ │ │ ├── PipelineCanvas │ │ │ │ ├── GraphPipelineCanvas │ │ │ │ │ ├── GraphPipelineCanvas.const.ts │ │ │ │ │ ├── GraphPipelineCanvas.tsx │ │ │ │ │ ├── GraphPipelineCanvas.types.ts │ │ │ │ │ ├── components │ │ │ │ │ │ ├── GraphEdge.tsx │ │ │ │ │ │ ├── Handles.tsx │ │ │ │ │ │ ├── PlaceholderWorkflowNode.stories.tsx │ │ │ │ │ │ ├── PlaceholderWorkflowNode.tsx │ │ │ │ │ │ └── WorkflowNode.tsx │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── usePipelineWorkflows.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── autoLayoutingGraphNodes.ts │ │ │ │ │ │ ├── createGraphPipelineEdge.ts │ │ │ │ │ │ ├── createPlaceholderEdge.ts │ │ │ │ │ │ ├── createPlaceholderNode.ts │ │ │ │ │ │ ├── createWorkflowNode.ts │ │ │ │ │ │ ├── transformWorkflowsToGraphEntities.ts │ │ │ │ │ │ └── validateConnection.ts │ │ │ │ ├── PipelineCanvas.tsx │ │ │ │ ├── PipelineConversionNotification.tsx │ │ │ │ ├── PipelineConversionSignposting.tsx │ │ │ │ └── StagedPipelineCanvas │ │ │ │ │ ├── StagedPipelineCanvas.const.ts │ │ │ │ │ ├── StagedPipelineCanvas.tsx │ │ │ │ │ ├── components │ │ │ │ │ ├── AddNode.tsx │ │ │ │ │ ├── EndNode.tsx │ │ │ │ │ ├── InvisibleHandle.tsx │ │ │ │ │ ├── RunNode.tsx │ │ │ │ │ └── StageNode.tsx │ │ │ │ │ └── hooks │ │ │ │ │ ├── usePipelineStageEdges.ts │ │ │ │ │ ├── usePipelineStageNodes.ts │ │ │ │ │ └── usePipelineStages.ts │ │ │ ├── PipelineConfigDrawer │ │ │ │ ├── PipelineConfigDrawer.tsx │ │ │ │ ├── components │ │ │ │ │ └── DeletePipelineDialog │ │ │ │ │ │ ├── DeletePipelineDialog.stories.tsx │ │ │ │ │ │ └── DeletePipelineDialog.tsx │ │ │ │ └── tabs │ │ │ │ │ ├── PropertiesTab.tsx │ │ │ │ │ └── TriggersTab.tsx │ │ │ ├── Toolbar │ │ │ │ ├── Toolbar.stories.tsx │ │ │ │ └── Toolbar.tsx │ │ │ └── WorkflowSelectorDrawer │ │ │ │ ├── WorkflowSelectorDrawer.stories.tsx │ │ │ │ ├── WorkflowSelectorDrawer.tsx │ │ │ │ └── components │ │ │ │ ├── NoWorkflowsEmptyState.tsx │ │ │ │ ├── SearchResultEmptyState.tsx │ │ │ │ ├── SelectableWorkflowCard.tsx │ │ │ │ └── WorkflowsList.tsx │ │ └── hooks │ │ │ ├── usePipelineConversionNotification.ts │ │ │ ├── usePipelineConversionSignposting.ts │ │ │ ├── usePipelineSelector.ts │ │ │ └── useRenamePipeline.ts │ ├── SecretsPage │ │ ├── SecretCard.tsx │ │ ├── SecretsPage.stories.tsx │ │ └── SecretsPage.tsx │ ├── StacksAndMachinesPage │ │ ├── StacksAndMachinesPage.stories.tsx │ │ ├── StacksAndMachinesPage.tsx │ │ └── tabs │ │ │ ├── DefaultTab.tsx │ │ │ └── WorkflowsTab.tsx │ ├── StepBundlesPage │ │ ├── StepBundlesPage.store.ts │ │ ├── StepBundlesPage.stories.tsx │ │ ├── StepBundlesPage.tsx │ │ └── components │ │ │ ├── Drawers.tsx │ │ │ ├── StepBundlesCanvasPanel.tsx │ │ │ └── StepBundlesSelector.tsx │ ├── TriggersPage │ │ ├── SetupWebhookNotification.tsx │ │ ├── TriggersPage.stories.tsx │ │ ├── TriggersPage.tsx │ │ └── components │ │ │ ├── LegacyTriggers │ │ │ ├── ConvertLegacyTriggers.tsx │ │ │ ├── LegacyEmptyState.tsx │ │ │ ├── LegacyTriggers.tsx │ │ │ ├── OrderOfTriggersNotification.tsx │ │ │ ├── SortableTriggerList.tsx │ │ │ └── TriggerCard.tsx │ │ │ └── TargetBasedTriggers │ │ │ ├── AddTriggerButton.tsx │ │ │ └── TargetBasedTriggers.tsx │ ├── WorkflowsPage │ │ ├── WorkflowsPage.store.ts │ │ ├── WorkflowsPage.stories.tsx │ │ ├── WorkflowsPage.tsx │ │ └── components │ │ │ ├── Drawers │ │ │ └── Drawers.tsx │ │ │ ├── WorkflowCanvasPanel │ │ │ └── WorkflowCanvasPanel.tsx │ │ │ └── WorkflowSelector │ │ │ └── WorkflowSelector.tsx │ └── YmlPage │ │ ├── YmlPage.stories.tsx │ │ ├── YmlPage.tsx │ │ └── components │ │ ├── ConfigurationYmlSource.mswMocks.ts │ │ ├── ConfigurationYmlSourceDialog.stories.tsx │ │ ├── ConfigurationYmlSourceDialog.tsx │ │ ├── OptimizeYouCiConfigBySplittingNotification.tsx │ │ ├── YmlEditor.tsx │ │ ├── YmlEditorHeader.tsx │ │ └── YourCiConfigIsSplitNotification.tsx │ ├── proxy-worker.js │ ├── proxy-worker.jsonc │ ├── routes.tsx │ ├── typings │ ├── declarations.d.ts │ ├── globals.d.ts │ └── jest.d.ts │ ├── utils │ └── datadogCustomRumTiming.ts │ └── yaml.worker.ts ├── spec ├── __mocks__ │ └── zustand.ts ├── integration │ ├── fixture │ │ ├── test_local_step │ │ │ └── step.yml │ │ └── untitled_step │ │ │ └── step.yml │ ├── test_bitrise.secrets.yml │ └── test_bitrise.yml ├── setup-jest.ts ├── smoke.spec.ts └── yaml-helper.ts ├── tsconfig.json ├── version ├── build.go └── version.go ├── vite-env.d.ts └── vite.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged --allow-empty -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/.lintstagedrc.json -------------------------------------------------------------------------------- /.storybook/deploy-storybook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/.storybook/deploy-storybook.js -------------------------------------------------------------------------------- /.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/.storybook/main.ts -------------------------------------------------------------------------------- /.storybook/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/.storybook/preview.tsx -------------------------------------------------------------------------------- /.storybook/public/mockServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/.storybook/public/mockServiceWorker.js -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 22.21.1 2 | golang 1.23.7 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/README.md -------------------------------------------------------------------------------- /_scripts/compile_api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/_scripts/compile_api.sh -------------------------------------------------------------------------------- /_scripts/forkpty-Darwin-x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/_scripts/forkpty-Darwin-x86_64 -------------------------------------------------------------------------------- /_scripts/forkpty-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/_scripts/forkpty-run.sh -------------------------------------------------------------------------------- /_scripts/run_api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/_scripts/run_api.sh -------------------------------------------------------------------------------- /_scripts/set_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/_scripts/set_version.go -------------------------------------------------------------------------------- /_scripts/set_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/_scripts/set_version.sh -------------------------------------------------------------------------------- /apiserver/api_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/apiserver/api_server.go -------------------------------------------------------------------------------- /apiserver/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/apiserver/config/config.go -------------------------------------------------------------------------------- /apiserver/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/apiserver/routes.go -------------------------------------------------------------------------------- /apiserver/service/bitrise_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/apiserver/service/bitrise_config.go -------------------------------------------------------------------------------- /apiserver/service/bitrise_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/apiserver/service/bitrise_config_test.go -------------------------------------------------------------------------------- /apiserver/service/bitrise_secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/apiserver/service/bitrise_secrets.go -------------------------------------------------------------------------------- /apiserver/service/bitrise_secrets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/apiserver/service/bitrise_secrets_test.go -------------------------------------------------------------------------------- /apiserver/service/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/apiserver/service/common.go -------------------------------------------------------------------------------- /apiserver/service/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/apiserver/service/connection.go -------------------------------------------------------------------------------- /apiserver/service/default_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/apiserver/service/default_options.go -------------------------------------------------------------------------------- /apiserver/service/default_options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/apiserver/service/default_options_test.go -------------------------------------------------------------------------------- /apiserver/service/step_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/apiserver/service/step_info.go -------------------------------------------------------------------------------- /apiserver/service/step_info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/apiserver/service/step_info_test.go -------------------------------------------------------------------------------- /apiserver/service/steplib_spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/apiserver/service/steplib_spec.go -------------------------------------------------------------------------------- /apiserver/service/steplib_spec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/apiserver/service/steplib_spec_test.go -------------------------------------------------------------------------------- /apiserver/service/test-step/.gitignore: -------------------------------------------------------------------------------- 1 | .bitrise* 2 | -------------------------------------------------------------------------------- /apiserver/service/test-step/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/apiserver/service/test-step/LICENSE -------------------------------------------------------------------------------- /apiserver/service/test-step/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/apiserver/service/test-step/README.md -------------------------------------------------------------------------------- /apiserver/service/test-step/bitrise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/apiserver/service/test-step/bitrise.yml -------------------------------------------------------------------------------- /apiserver/service/test-step/step.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/apiserver/service/test-step/step.sh -------------------------------------------------------------------------------- /apiserver/service/test-step/step.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/apiserver/service/test-step/step.yml -------------------------------------------------------------------------------- /apiserver/service/testdata/bitrise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/apiserver/service/testdata/bitrise.yml -------------------------------------------------------------------------------- /apiserver/tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/apiserver/tools/tools.go -------------------------------------------------------------------------------- /apiserver/utility/utility.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/apiserver/utility/utility.go -------------------------------------------------------------------------------- /apiserver/utility/utility_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/apiserver/utility/utility_test.go -------------------------------------------------------------------------------- /bitrise-plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/bitrise-plugin.yml -------------------------------------------------------------------------------- /bitrise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/bitrise.yml -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/cmd/version.go -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/go.sum -------------------------------------------------------------------------------- /gows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/gows.yml -------------------------------------------------------------------------------- /jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/jest.config.cjs -------------------------------------------------------------------------------- /knip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/knip.json -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/main.go -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /release/discuss_release.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/release/discuss_release.mustache -------------------------------------------------------------------------------- /release/github_release.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/release/github_release.mustache -------------------------------------------------------------------------------- /release_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/release_config.yml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/renovate.json -------------------------------------------------------------------------------- /source/images/arrow-down-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/images/arrow-down-dark.svg -------------------------------------------------------------------------------- /source/images/bitrise-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/images/bitrise-logo.svg -------------------------------------------------------------------------------- /source/images/error-hairball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/images/error-hairball.svg -------------------------------------------------------------------------------- /source/images/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/images/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /source/images/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/images/favicons/favicon.ico -------------------------------------------------------------------------------- /source/images/logo/android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/images/logo/android.svg -------------------------------------------------------------------------------- /source/images/logo/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/images/logo/apple.svg -------------------------------------------------------------------------------- /source/images/logo/cordova.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/images/logo/cordova.svg -------------------------------------------------------------------------------- /source/images/logo/flutter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/images/logo/flutter.svg -------------------------------------------------------------------------------- /source/images/logo/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/images/logo/github.svg -------------------------------------------------------------------------------- /source/images/logo/ionic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/images/logo/ionic.svg -------------------------------------------------------------------------------- /source/images/logo/macos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/images/logo/macos.svg -------------------------------------------------------------------------------- /source/images/logo/other.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/images/logo/other.svg -------------------------------------------------------------------------------- /source/images/logo/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/images/logo/react.svg -------------------------------------------------------------------------------- /source/images/logo/xamarin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/images/logo/xamarin.svg -------------------------------------------------------------------------------- /source/images/step/badge-community_created.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/images/step/badge-community_created.svg -------------------------------------------------------------------------------- /source/images/step/badge-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/images/step/badge-deprecated.svg -------------------------------------------------------------------------------- /source/images/step/clone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/images/step/clone.svg -------------------------------------------------------------------------------- /source/images/step/icon-default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/images/step/icon-default.svg -------------------------------------------------------------------------------- /source/images/step/latest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/images/step/latest.svg -------------------------------------------------------------------------------- /source/images/step/upgrade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/images/step/upgrade.svg -------------------------------------------------------------------------------- /source/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/index.html -------------------------------------------------------------------------------- /source/javascripts/components/AutoGrowableInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/AutoGrowableInput.tsx -------------------------------------------------------------------------------- /source/javascripts/components/ConfigMergeDialog/ConfigMergeDialog.mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/ConfigMergeDialog/ConfigMergeDialog.mocks.ts -------------------------------------------------------------------------------- /source/javascripts/components/ConfigMergeDialog/ConfigMergeDialog.store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/ConfigMergeDialog/ConfigMergeDialog.store.ts -------------------------------------------------------------------------------- /source/javascripts/components/ConfigMergeDialog/ConfigMergeDialog.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/ConfigMergeDialog/ConfigMergeDialog.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/components/ConfigMergeDialog/ConfigMergeDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/ConfigMergeDialog/ConfigMergeDialog.tsx -------------------------------------------------------------------------------- /source/javascripts/components/DetailedHelperText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/DetailedHelperText.tsx -------------------------------------------------------------------------------- /source/javascripts/components/DiffEditor/DiffEditor.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/DiffEditor/DiffEditor.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/components/DiffEditor/DiffEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/DiffEditor/DiffEditor.tsx -------------------------------------------------------------------------------- /source/javascripts/components/DiffEditor/DiffEditorDialog.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/DiffEditor/DiffEditorDialog.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/components/DiffEditor/DiffEditorDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/DiffEditor/DiffEditorDialog.tsx -------------------------------------------------------------------------------- /source/javascripts/components/Discardable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/Discardable.tsx -------------------------------------------------------------------------------- /source/javascripts/components/DragHandle/DragHandle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/DragHandle/DragHandle.tsx -------------------------------------------------------------------------------- /source/javascripts/components/DragHandle/DragHandleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/DragHandle/DragHandleIcon.tsx -------------------------------------------------------------------------------- /source/javascripts/components/EditableInput/EditableInput.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/EditableInput/EditableInput.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/components/EditableInput/EditableInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/EditableInput/EditableInput.tsx -------------------------------------------------------------------------------- /source/javascripts/components/Header.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/Header.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/Header.tsx -------------------------------------------------------------------------------- /source/javascripts/components/LazyRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/LazyRoute.tsx -------------------------------------------------------------------------------- /source/javascripts/components/LoadingState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/LoadingState.tsx -------------------------------------------------------------------------------- /source/javascripts/components/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/Navigation.tsx -------------------------------------------------------------------------------- /source/javascripts/components/SortableEnvVars/SortableEnvVarItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/SortableEnvVars/SortableEnvVarItem.tsx -------------------------------------------------------------------------------- /source/javascripts/components/SortableEnvVars/SortableEnvVars.events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/SortableEnvVars/SortableEnvVars.events.ts -------------------------------------------------------------------------------- /source/javascripts/components/SortableEnvVars/SortableEnvVars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/SortableEnvVars/SortableEnvVars.tsx -------------------------------------------------------------------------------- /source/javascripts/components/SortableEnvVars/useSortableEnvVars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/SortableEnvVars/useSortableEnvVars.ts -------------------------------------------------------------------------------- /source/javascripts/components/StacksAndMachine/DefaultStackAndMachine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/StacksAndMachine/DefaultStackAndMachine.tsx -------------------------------------------------------------------------------- /source/javascripts/components/StacksAndMachine/DeprecatedMachineNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/StacksAndMachine/DeprecatedMachineNotification.tsx -------------------------------------------------------------------------------- /source/javascripts/components/StacksAndMachine/MachineTypeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/StacksAndMachine/MachineTypeSelector.tsx -------------------------------------------------------------------------------- /source/javascripts/components/StacksAndMachine/StackAndMachine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/StacksAndMachine/StackAndMachine.tsx -------------------------------------------------------------------------------- /source/javascripts/components/StacksAndMachine/StackAndMachineWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/StacksAndMachine/StackAndMachineWrapper.tsx -------------------------------------------------------------------------------- /source/javascripts/components/StacksAndMachine/StackSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/StacksAndMachine/StackSelector.tsx -------------------------------------------------------------------------------- /source/javascripts/components/StacksAndMachine/WorkflowStackAndMachine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/StacksAndMachine/WorkflowStackAndMachine.tsx -------------------------------------------------------------------------------- /source/javascripts/components/StepBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/StepBadge.tsx -------------------------------------------------------------------------------- /source/javascripts/components/VariablePopover/EnvVarPopover.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/VariablePopover/EnvVarPopover.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/components/VariablePopover/EnvVarPopover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/VariablePopover/EnvVarPopover.tsx -------------------------------------------------------------------------------- /source/javascripts/components/VariablePopover/SecretPopover.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/VariablePopover/SecretPopover.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/components/VariablePopover/SecretPopover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/VariablePopover/SecretPopover.tsx -------------------------------------------------------------------------------- /source/javascripts/components/VariablePopover/components/CreateEnvVar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/VariablePopover/components/CreateEnvVar.tsx -------------------------------------------------------------------------------- /source/javascripts/components/VariablePopover/components/CreateSecret.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/VariablePopover/components/CreateSecret.tsx -------------------------------------------------------------------------------- /source/javascripts/components/VariablePopover/components/FilterInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/VariablePopover/components/FilterInput.tsx -------------------------------------------------------------------------------- /source/javascripts/components/VariablePopover/components/LoadingState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/VariablePopover/components/LoadingState.tsx -------------------------------------------------------------------------------- /source/javascripts/components/VariablePopover/hooks/useFilterableActionList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/VariablePopover/hooks/useFilterableActionList.ts -------------------------------------------------------------------------------- /source/javascripts/components/VariablePopover/hooks/useMultiModePopover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/VariablePopover/hooks/useMultiModePopover.ts -------------------------------------------------------------------------------- /source/javascripts/components/VariablePopover/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/VariablePopover/index.ts -------------------------------------------------------------------------------- /source/javascripts/components/YmlValidationBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/YmlValidationBadge.tsx -------------------------------------------------------------------------------- /source/javascripts/components/tabs/TabContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/tabs/TabContainer.tsx -------------------------------------------------------------------------------- /source/javascripts/components/tabs/TabHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/tabs/TabHeader.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/ChainWorkflowDrawer/ChainWorkflowDrawer.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/ChainWorkflowDrawer/ChainWorkflowDrawer.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/ChainWorkflowDrawer/ChainWorkflowDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/ChainWorkflowDrawer/ChainWorkflowDrawer.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/ChainWorkflowDrawer/components/ChainableWorkflowCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/ChainWorkflowDrawer/components/ChainableWorkflowCard.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/ChainWorkflowDrawer/components/ChainableWorkflowList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/ChainWorkflowDrawer/components/ChainableWorkflowList.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/CreateEntityDialog/CreateEntityDialog.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/CreateEntityDialog/CreateEntityDialog.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/CreateEntityDialog/CreateEntityDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/CreateEntityDialog/CreateEntityDialog.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/CreateStepBundleDialog/CreateStepBundleDialog.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/CreateStepBundleDialog/CreateStepBundleDialog.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/CreateStepBundleDialog/CreateStepBundleDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/CreateStepBundleDialog/CreateStepBundleDialog.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/CreateWorkflowDialog/CreateWorkflowDialog.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/CreateWorkflowDialog/CreateWorkflowDialog.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/CreateWorkflowDialog/CreateWorkflowDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/CreateWorkflowDialog/CreateWorkflowDialog.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/DeleteStepBundleDialog/DeleteStepBundleDialog.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/DeleteStepBundleDialog/DeleteStepBundleDialog.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/DeleteStepBundleDialog/DeleteStepBundleDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/DeleteStepBundleDialog/DeleteStepBundleDialog.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/DeleteWorkflowDialog/DeleteWorkflowDialog.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/DeleteWorkflowDialog/DeleteWorkflowDialog.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/DeleteWorkflowDialog/DeleteWorkflowDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/DeleteWorkflowDialog/DeleteWorkflowDialog.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/EntitySelector/EntitySelector.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/EntitySelector/EntitySelector.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/EntitySelector/EntitySelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/EntitySelector/EntitySelector.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/FloatingDrawer/FloatingDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/FloatingDrawer/FloatingDrawer.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/PriorityInput/PriorityInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/PriorityInput/PriorityInput.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StartBuildDialog/StartBuildDialog.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StartBuildDialog/StartBuildDialog.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StartBuildDialog/StartBuildDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StartBuildDialog/StartBuildDialog.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StartBuildDialog/useStartBuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StartBuildDialog/useStartBuild.ts -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepBundleConfig/StepBundleConfig.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepBundleConfig/StepBundleConfig.context.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepBundleConfig/StepBundleConfigContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepBundleConfig/StepBundleConfigContent.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepBundleConfig/StepBundleConfigDrawer.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepBundleConfig/StepBundleConfigDrawer.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepBundleConfig/StepBundleConfigDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepBundleConfig/StepBundleConfigDrawer.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepBundleConfig/StepBundleConfigHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepBundleConfig/StepBundleConfigHeader.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepBundleConfig/StepBundleConfigInputs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepBundleConfig/StepBundleConfigInputs.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepBundleConfig/StepBundleConfigPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepBundleConfig/StepBundleConfigPanel.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepBundleConfig/StepBundleConfigurationTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepBundleConfig/StepBundleConfigurationTab.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepBundleConfig/StepBundleInputs/StepBundleInputsCategoryCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepBundleConfig/StepBundleInputs/StepBundleInputsCategoryCard.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepBundleConfig/StepBundleInputs/StepBundleInputsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepBundleConfig/StepBundleInputs/StepBundleInputsDialog.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepBundleConfig/StepBundlePropertiesTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepBundleConfig/StepBundlePropertiesTab.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepBundleConfig/hooks/useChangeStepBundleId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepBundleConfig/hooks/useChangeStepBundleId.ts -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepBundleConfig/hooks/useStepBundleInputs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepBundleConfig/hooks/useStepBundleInputs.ts -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepBundleConfig/types/StepBundle.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepBundleConfig/types/StepBundle.types.ts -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepBundleConfig/utils/StepBundle.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepBundleConfig/utils/StepBundle.utils.ts -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepConfigDrawer/StepConfigDrawer.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepConfigDrawer/StepConfigDrawer.context.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepConfigDrawer/StepConfigDrawer.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepConfigDrawer/StepConfigDrawer.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepConfigDrawer/StepConfigDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepConfigDrawer/StepConfigDrawer.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepConfigDrawer/components/SensitiveBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepConfigDrawer/components/SensitiveBadge.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepConfigDrawer/components/StepCodeEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepConfigDrawer/components/StepCodeEditor.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepConfigDrawer/components/StepHelperText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepConfigDrawer/components/StepHelperText.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepConfigDrawer/components/StepInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepConfigDrawer/components/StepInput.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepConfigDrawer/components/StepInputGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepConfigDrawer/components/StepInputGroup.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepConfigDrawer/components/StepSelectInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepConfigDrawer/components/StepSelectInput.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepConfigDrawer/tabs/ConfigurationTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepConfigDrawer/tabs/ConfigurationTab.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepConfigDrawer/tabs/OutputVariablesTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepConfigDrawer/tabs/OutputVariablesTab.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepConfigDrawer/tabs/PropertiesTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepConfigDrawer/tabs/PropertiesTab.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepSelectorDrawer/StepSelectorDrawer.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepSelectorDrawer/StepSelectorDrawer.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepSelectorDrawer/StepSelectorDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepSelectorDrawer/StepSelectorDrawer.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepSelectorDrawer/StepSelectorDrawer.types.ts: -------------------------------------------------------------------------------- 1 | export type SelectStepHandlerFn = (cvs: string) => void; 2 | -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepSelectorDrawer/components/AlgoliaStepList.const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepSelectorDrawer/components/AlgoliaStepList.const.ts -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepSelectorDrawer/components/AlgoliaStepList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepSelectorDrawer/components/AlgoliaStepList.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepSelectorDrawer/components/AlgoliaStepListEmptyState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepSelectorDrawer/components/AlgoliaStepListEmptyState.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepSelectorDrawer/components/AlgoliaStepListErrorState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepSelectorDrawer/components/AlgoliaStepListErrorState.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepSelectorDrawer/components/AlgoliaStepListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepSelectorDrawer/components/AlgoliaStepListItem.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepSelectorDrawer/components/AlgoliaStepListItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepSelectorDrawer/components/AlgoliaStepListItems.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepSelectorDrawer/components/AlgoliaStepListLoadingState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepSelectorDrawer/components/AlgoliaStepListLoadingState.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepSelectorDrawer/components/SelectableStepBundleCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepSelectorDrawer/components/SelectableStepBundleCard.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepSelectorDrawer/components/StepBundleCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepSelectorDrawer/components/StepBundleCard.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepSelectorDrawer/components/StepBundleFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepSelectorDrawer/components/StepBundleFilter.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepSelectorDrawer/components/StepBundleList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepSelectorDrawer/components/StepBundleList.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepSelectorDrawer/components/StepFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepSelectorDrawer/components/StepFilter.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepSelectorDrawer/hooks/useCalculateColumns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepSelectorDrawer/hooks/useCalculateColumns.ts -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepSelectorDrawer/hooks/useDebouncedFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepSelectorDrawer/hooks/useDebouncedFilter.ts -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepSelectorDrawer/hooks/useSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepSelectorDrawer/hooks/useSearch.ts -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepSelectorDrawer/hooks/useSearchAlgoliaSteps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepSelectorDrawer/hooks/useSearchAlgoliaSteps.ts -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/StepSelectorDrawer/hooks/useVirtualItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/StepSelectorDrawer/hooks/useVirtualItems.ts -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/Triggers/ConditionCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/Triggers/ConditionCard.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/Triggers/TargetBasedTriggers/AddOrEditTriggerDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/Triggers/TargetBasedTriggers/AddOrEditTriggerDialog.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/Triggers/TargetBasedTriggers/TargerBasedTriggerItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/Triggers/TargetBasedTriggers/TargerBasedTriggerItem.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/Triggers/TargetBasedTriggers/TargetBasedTriggerNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/Triggers/TargetBasedTriggers/TargetBasedTriggerNotification.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/Triggers/TargetBasedTriggers/TargetBasedTriggersCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/Triggers/TargetBasedTriggers/TargetBasedTriggersCard.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/Triggers/TargetBasedTriggers/TargetBasedTriggersTabContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/Triggers/TargetBasedTriggers/TargetBasedTriggersTabContent.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/Triggers/TargetBasedTriggers/TriggerFormBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/Triggers/TargetBasedTriggers/TriggerFormBody.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/Triggers/TargetBasedTriggers/TriggerFormFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/Triggers/TargetBasedTriggers/TriggerFormFooter.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/Triggers/TriggerConditions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/Triggers/TriggerConditions.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/UpdateConfigurationDialog/UpdateConfigurationDialog.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/UpdateConfigurationDialog/UpdateConfigurationDialog.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/UpdateConfigurationDialog/UpdateConfigurationDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/UpdateConfigurationDialog/UpdateConfigurationDialog.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/UpdateConfigurationDialog/YmlDialogErrorNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/UpdateConfigurationDialog/YmlDialogErrorNotification.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/VersionChangedDialog/VersionChangedDialog.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/VersionChangedDialog/VersionChangedDialog.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/VersionChangedDialog/VersionChangedDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/VersionChangedDialog/VersionChangedDialog.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WhenToRunCard/WhenToRunCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WhenToRunCard/WhenToRunCard.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WithGroupDrawer/WithGroupDrawer.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WithGroupDrawer/WithGroupDrawer.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WithGroupDrawer/WithGroupDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WithGroupDrawer/WithGroupDrawer.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowCard/WorkflowCard.const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowCard/WorkflowCard.const.ts -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowCard/WorkflowCard.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowCard/WorkflowCard.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowCard/WorkflowCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowCard/WorkflowCard.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowCard/WorkflowCard.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowCard/WorkflowCard.types.ts -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowCard/components/AddStepButton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowCard/components/AddStepButton.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowCard/components/AddStepButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowCard/components/AddStepButton.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowCard/components/ChainedWorkflowCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowCard/components/ChainedWorkflowCard.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowCard/components/ChainedWorkflowList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowCard/components/ChainedWorkflowList.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowCard/components/Droppable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowCard/components/Droppable.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowCard/components/ScaledDragOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowCard/components/ScaledDragOverlay.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowCard/components/SortableWorkflowsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowCard/components/SortableWorkflowsContext.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowCard/components/StepBundleStepList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowCard/components/StepBundleStepList.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowCard/components/StepCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowCard/components/StepCard.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowCard/components/StepList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowCard/components/StepList.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowCard/components/StepListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowCard/components/StepListItem.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowCard/components/StepMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowCard/components/StepMenu.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowCard/components/WorkflowStepList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowCard/components/WorkflowStepList.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowCard/contexts/WorkflowCardContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowCard/contexts/WorkflowCardContext.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowCard/hooks/useReactFlowZoom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowCard/hooks/useReactFlowZoom.ts -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowConfig/WorkflowConfig.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowConfig/WorkflowConfig.context.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowConfig/WorkflowConfig.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowConfig/WorkflowConfig.types.ts -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowConfig/WorkflowConfigDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowConfig/WorkflowConfigDrawer.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowConfig/WorkflowConfigPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowConfig/WorkflowConfigPanel.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowConfig/components/EnvVarsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowConfig/components/EnvVarsCard.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowConfig/components/GitStatusNameInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowConfig/components/GitStatusNameInput.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowConfig/components/PipelineConditionsCard.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowConfig/components/PipelineConditionsCard.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowConfig/components/PipelineConditionsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowConfig/components/PipelineConditionsCard.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowConfig/components/StackAndMachineCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowConfig/components/StackAndMachineCard.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowConfig/components/WorkflowConfigHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowConfig/components/WorkflowConfigHeader.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowConfig/hooks/useRenameWorkflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowConfig/hooks/useRenameWorkflow.ts -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowConfig/tabs/ConfigurationTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowConfig/tabs/ConfigurationTab.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowConfig/tabs/PropertiesTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowConfig/tabs/PropertiesTab.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowConfig/tabs/TriggersTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowConfig/tabs/TriggersTab.tsx -------------------------------------------------------------------------------- /source/javascripts/components/unified-editor/WorkflowEmptyState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/components/unified-editor/WorkflowEmptyState.tsx -------------------------------------------------------------------------------- /source/javascripts/core/analytics/PipelineAnalytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/analytics/PipelineAnalytics.ts -------------------------------------------------------------------------------- /source/javascripts/core/analytics/SegmentBaseTracking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/analytics/SegmentBaseTracking.ts -------------------------------------------------------------------------------- /source/javascripts/core/analytics/TriggerAnalytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/analytics/TriggerAnalytics.ts -------------------------------------------------------------------------------- /source/javascripts/core/analytics/WorkflowAnalytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/analytics/WorkflowAnalytics.ts -------------------------------------------------------------------------------- /source/javascripts/core/api/AlgoliaApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/api/AlgoliaApi.ts -------------------------------------------------------------------------------- /source/javascripts/core/api/BitriseYmlApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/api/BitriseYmlApi.ts -------------------------------------------------------------------------------- /source/javascripts/core/api/BitriseYmlSettingsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/api/BitriseYmlSettingsApi.ts -------------------------------------------------------------------------------- /source/javascripts/core/api/BuildApi.mswMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/api/BuildApi.mswMocks.ts -------------------------------------------------------------------------------- /source/javascripts/core/api/BuildApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/api/BuildApi.ts -------------------------------------------------------------------------------- /source/javascripts/core/api/EnvVarsApi.mswMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/api/EnvVarsApi.mswMocks.ts -------------------------------------------------------------------------------- /source/javascripts/core/api/EnvVarsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/api/EnvVarsApi.ts -------------------------------------------------------------------------------- /source/javascripts/core/api/LicensePoolsApi.mswMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/api/LicensePoolsApi.mswMocks.ts -------------------------------------------------------------------------------- /source/javascripts/core/api/LicensePoolsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/api/LicensePoolsApi.ts -------------------------------------------------------------------------------- /source/javascripts/core/api/SecretApi.mswMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/api/SecretApi.mswMocks.ts -------------------------------------------------------------------------------- /source/javascripts/core/api/SecretApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/api/SecretApi.ts -------------------------------------------------------------------------------- /source/javascripts/core/api/StacksAndMachinesApi.mswMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/api/StacksAndMachinesApi.mswMocks.ts -------------------------------------------------------------------------------- /source/javascripts/core/api/StacksAndMachinesApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/api/StacksAndMachinesApi.ts -------------------------------------------------------------------------------- /source/javascripts/core/api/StepApi.mswMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/api/StepApi.mswMocks.ts -------------------------------------------------------------------------------- /source/javascripts/core/api/StepApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/api/StepApi.ts -------------------------------------------------------------------------------- /source/javascripts/core/api/UserApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/api/UserApi.ts -------------------------------------------------------------------------------- /source/javascripts/core/api/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/api/client.ts -------------------------------------------------------------------------------- /source/javascripts/core/models/BitriseYml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/models/BitriseYml.ts -------------------------------------------------------------------------------- /source/javascripts/core/models/BitriseYmlSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/models/BitriseYmlSettings.ts -------------------------------------------------------------------------------- /source/javascripts/core/models/EnvVar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/models/EnvVar.ts -------------------------------------------------------------------------------- /source/javascripts/core/models/LicensePool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/models/LicensePool.ts -------------------------------------------------------------------------------- /source/javascripts/core/models/Secret.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/models/Secret.ts -------------------------------------------------------------------------------- /source/javascripts/core/models/StackAndMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/models/StackAndMachine.ts -------------------------------------------------------------------------------- /source/javascripts/core/models/Stage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/models/Stage.ts -------------------------------------------------------------------------------- /source/javascripts/core/models/Step.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/models/Step.ts -------------------------------------------------------------------------------- /source/javascripts/core/models/StepBundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/models/StepBundle.ts -------------------------------------------------------------------------------- /source/javascripts/core/models/Trigger.legacy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/models/Trigger.legacy.ts -------------------------------------------------------------------------------- /source/javascripts/core/models/Trigger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/models/Trigger.ts -------------------------------------------------------------------------------- /source/javascripts/core/models/Workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/models/Workflow.ts -------------------------------------------------------------------------------- /source/javascripts/core/services/BitriseYmlService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/services/BitriseYmlService.spec.ts -------------------------------------------------------------------------------- /source/javascripts/core/services/BitriseYmlService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/services/BitriseYmlService.ts -------------------------------------------------------------------------------- /source/javascripts/core/services/EnvVarService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/services/EnvVarService.spec.ts -------------------------------------------------------------------------------- /source/javascripts/core/services/EnvVarService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/services/EnvVarService.ts -------------------------------------------------------------------------------- /source/javascripts/core/services/PipelineService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/services/PipelineService.spec.ts -------------------------------------------------------------------------------- /source/javascripts/core/services/PipelineService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/services/PipelineService.ts -------------------------------------------------------------------------------- /source/javascripts/core/services/SecretService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/services/SecretService.ts -------------------------------------------------------------------------------- /source/javascripts/core/services/StackAndMachineService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/services/StackAndMachineService.spec.ts -------------------------------------------------------------------------------- /source/javascripts/core/services/StackAndMachineService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/services/StackAndMachineService.ts -------------------------------------------------------------------------------- /source/javascripts/core/services/StepBundleService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/services/StepBundleService.spec.ts -------------------------------------------------------------------------------- /source/javascripts/core/services/StepBundleService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/services/StepBundleService.ts -------------------------------------------------------------------------------- /source/javascripts/core/services/StepService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/services/StepService.spec.ts -------------------------------------------------------------------------------- /source/javascripts/core/services/StepService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/services/StepService.ts -------------------------------------------------------------------------------- /source/javascripts/core/services/StepVariableService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/services/StepVariableService.spec.ts -------------------------------------------------------------------------------- /source/javascripts/core/services/StepVariableService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/services/StepVariableService.ts -------------------------------------------------------------------------------- /source/javascripts/core/services/TriggerService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/services/TriggerService.spec.ts -------------------------------------------------------------------------------- /source/javascripts/core/services/TriggerService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/services/TriggerService.ts -------------------------------------------------------------------------------- /source/javascripts/core/services/WorkflowService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/services/WorkflowService.spec.ts -------------------------------------------------------------------------------- /source/javascripts/core/services/WorkflowService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/services/WorkflowService.ts -------------------------------------------------------------------------------- /source/javascripts/core/stores/BitriseYmlStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/stores/BitriseYmlStore.ts -------------------------------------------------------------------------------- /source/javascripts/core/utils/CommonUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/utils/CommonUtils.ts -------------------------------------------------------------------------------- /source/javascripts/core/utils/GlobalProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/utils/GlobalProps.ts -------------------------------------------------------------------------------- /source/javascripts/core/utils/MonacoUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/utils/MonacoUtils.ts -------------------------------------------------------------------------------- /source/javascripts/core/utils/PageProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/utils/PageProps.ts -------------------------------------------------------------------------------- /source/javascripts/core/utils/RuntimeUtils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/utils/RuntimeUtils.spec.ts -------------------------------------------------------------------------------- /source/javascripts/core/utils/RuntimeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/utils/RuntimeUtils.ts -------------------------------------------------------------------------------- /source/javascripts/core/utils/VersionUtils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/utils/VersionUtils.spec.ts -------------------------------------------------------------------------------- /source/javascripts/core/utils/VersionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/utils/VersionUtils.ts -------------------------------------------------------------------------------- /source/javascripts/core/utils/WindowUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/utils/WindowUtils.ts -------------------------------------------------------------------------------- /source/javascripts/core/utils/YmlUtils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/utils/YmlUtils.spec.ts -------------------------------------------------------------------------------- /source/javascripts/core/utils/YmlUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/core/utils/YmlUtils.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useAlgolia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useAlgolia.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useBitriseYmlStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useBitriseYmlStore.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useChainableWorkflows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useChainableWorkflows.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useCiConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useCiConfig.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useCiConfigSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useCiConfigSettings.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useCurrentPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useCurrentPage.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useDebouncedFormValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useDebouncedFormValues.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useDefaultStepLibrary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useDefaultStepLibrary.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useDependantWorkflows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useDependantWorkflows.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useEnvVars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useEnvVars.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useFeatureFlag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useFeatureFlag.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useHashLocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useHashLocation.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useHashSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useHashSearch.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useIsTruncated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useIsTruncated.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useLegacyTriggers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useLegacyTriggers.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useLicensePools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useLicensePools.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useNavigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useNavigation.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/usePipelineIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/usePipelineIds.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/usePipelines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/usePipelines.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useProjectStackAndMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useProjectStackAndMachine.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useSearchParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useSearchParams.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useSecrets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useSecrets.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useSelectedStepBundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useSelectedStepBundle.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useSelectedWorkflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useSelectedWorkflow.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useShallow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useShallow.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useStacksAndMachines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useStacksAndMachines.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useStep.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useStepBundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useStepBundle.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useStepBundles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useStepBundles.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useTargetBasedTriggers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useTargetBasedTriggers.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useUniqueStepIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useUniqueStepIds.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useUserMetaData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useUserMetaData.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useWorkflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useWorkflow.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useWorkflowIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useWorkflowIds.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useWorkflowStackAndMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useWorkflowStackAndMachine.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useWorkflowStackName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useWorkflowStackName.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useWorkflows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useWorkflows.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useYmlHasChanges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useYmlHasChanges.ts -------------------------------------------------------------------------------- /source/javascripts/hooks/useYmlValidationStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/hooks/useYmlValidationStatus.ts -------------------------------------------------------------------------------- /source/javascripts/layouts/MainLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/layouts/MainLayout.tsx -------------------------------------------------------------------------------- /source/javascripts/lib/clarity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/lib/clarity.js -------------------------------------------------------------------------------- /source/javascripts/lib/datadog-rum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/lib/datadog-rum.js -------------------------------------------------------------------------------- /source/javascripts/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/main.tsx -------------------------------------------------------------------------------- /source/javascripts/monaco-workers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/monaco-workers.ts -------------------------------------------------------------------------------- /source/javascripts/pages/EnvVarsPage/EnvVarsPage.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/EnvVarsPage/EnvVarsPage.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/EnvVarsPage/EnvVarsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/EnvVarsPage/EnvVarsPage.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/EnvVarsPage/components/EnvVarsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/EnvVarsPage/components/EnvVarsTable.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/EnvVarsPage/components/PrivateInfoNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/EnvVarsPage/components/PrivateInfoNotification.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/EnvVarsPage/tabs/ProjectTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/EnvVarsPage/tabs/ProjectTab.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/EnvVarsPage/tabs/WorkflowsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/EnvVarsPage/tabs/WorkflowsTab.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/LicensesPage/LicensesPage.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/LicensesPage/LicensesPage.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/LicensesPage/LicensesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/LicensesPage/LicensesPage.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/PipelinesPage.store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/PipelinesPage.store.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/PipelinesPage.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/PipelinesPage.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/PipelinesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/PipelinesPage.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/assets/graph-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/assets/graph-pipeline.png -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/CreatePipelineDialog/CreatePipelineDialog.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/CreatePipelineDialog/CreatePipelineDialog.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/CreatePipelineDialog/CreatePipelineDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/CreatePipelineDialog/CreatePipelineDialog.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/Drawers/Drawers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/Drawers/Drawers.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/EmptyStates/CreateFirstGraphPipelineEmptyState.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/EmptyStates/CreateFirstGraphPipelineEmptyState.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/EmptyStates/CreateFirstGraphPipelineEmptyState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/EmptyStates/CreateFirstGraphPipelineEmptyState.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/EmptyStates/GraphPipelineCanvasEmptyState.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/EmptyStates/GraphPipelineCanvasEmptyState.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/EmptyStates/GraphPipelineCanvasEmptyState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/EmptyStates/GraphPipelineCanvasEmptyState.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/EmptyStates/ReactivatePlanEmptyState.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/EmptyStates/ReactivatePlanEmptyState.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/EmptyStates/ReactivatePlanEmptyState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/EmptyStates/ReactivatePlanEmptyState.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/EmptyStates/UpgradePlanEmptyState.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/EmptyStates/UpgradePlanEmptyState.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/EmptyStates/UpgradePlanEmptyState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/EmptyStates/UpgradePlanEmptyState.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/GraphPipelineCanvas.const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/GraphPipelineCanvas.const.ts -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/GraphPipelineCanvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/GraphPipelineCanvas.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/GraphPipelineCanvas.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/GraphPipelineCanvas.types.ts -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/components/GraphEdge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/components/GraphEdge.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/components/Handles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/components/Handles.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/components/PlaceholderWorkflowNode.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/components/PlaceholderWorkflowNode.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/components/PlaceholderWorkflowNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/components/PlaceholderWorkflowNode.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/components/WorkflowNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/components/WorkflowNode.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/hooks/usePipelineWorkflows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/hooks/usePipelineWorkflows.ts -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/utils/autoLayoutingGraphNodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/utils/autoLayoutingGraphNodes.ts -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/utils/createGraphPipelineEdge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/utils/createGraphPipelineEdge.ts -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/utils/createPlaceholderEdge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/utils/createPlaceholderEdge.ts -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/utils/createPlaceholderNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/utils/createPlaceholderNode.ts -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/utils/createWorkflowNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/utils/createWorkflowNode.ts -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/utils/transformWorkflowsToGraphEntities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/utils/transformWorkflowsToGraphEntities.ts -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/utils/validateConnection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/GraphPipelineCanvas/utils/validateConnection.ts -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/PipelineCanvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/PipelineCanvas.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/PipelineConversionNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/PipelineConversionNotification.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/PipelineConversionSignposting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/PipelineConversionSignposting.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/StagedPipelineCanvas/StagedPipelineCanvas.const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/StagedPipelineCanvas/StagedPipelineCanvas.const.ts -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/StagedPipelineCanvas/StagedPipelineCanvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/StagedPipelineCanvas/StagedPipelineCanvas.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/StagedPipelineCanvas/components/AddNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/StagedPipelineCanvas/components/AddNode.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/StagedPipelineCanvas/components/EndNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/StagedPipelineCanvas/components/EndNode.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/StagedPipelineCanvas/components/InvisibleHandle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/StagedPipelineCanvas/components/InvisibleHandle.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/StagedPipelineCanvas/components/RunNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/StagedPipelineCanvas/components/RunNode.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/StagedPipelineCanvas/components/StageNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/StagedPipelineCanvas/components/StageNode.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/StagedPipelineCanvas/hooks/usePipelineStageEdges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/StagedPipelineCanvas/hooks/usePipelineStageEdges.ts -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/StagedPipelineCanvas/hooks/usePipelineStageNodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/StagedPipelineCanvas/hooks/usePipelineStageNodes.ts -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineCanvas/StagedPipelineCanvas/hooks/usePipelineStages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineCanvas/StagedPipelineCanvas/hooks/usePipelineStages.ts -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineConfigDrawer/PipelineConfigDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineConfigDrawer/PipelineConfigDrawer.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineConfigDrawer/components/DeletePipelineDialog/DeletePipelineDialog.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineConfigDrawer/components/DeletePipelineDialog/DeletePipelineDialog.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineConfigDrawer/components/DeletePipelineDialog/DeletePipelineDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineConfigDrawer/components/DeletePipelineDialog/DeletePipelineDialog.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineConfigDrawer/tabs/PropertiesTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineConfigDrawer/tabs/PropertiesTab.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/PipelineConfigDrawer/tabs/TriggersTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/PipelineConfigDrawer/tabs/TriggersTab.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/Toolbar/Toolbar.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/Toolbar/Toolbar.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/Toolbar/Toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/Toolbar/Toolbar.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/WorkflowSelectorDrawer/WorkflowSelectorDrawer.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/WorkflowSelectorDrawer/WorkflowSelectorDrawer.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/WorkflowSelectorDrawer/WorkflowSelectorDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/WorkflowSelectorDrawer/WorkflowSelectorDrawer.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/WorkflowSelectorDrawer/components/NoWorkflowsEmptyState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/WorkflowSelectorDrawer/components/NoWorkflowsEmptyState.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/WorkflowSelectorDrawer/components/SearchResultEmptyState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/WorkflowSelectorDrawer/components/SearchResultEmptyState.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/WorkflowSelectorDrawer/components/SelectableWorkflowCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/WorkflowSelectorDrawer/components/SelectableWorkflowCard.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/components/WorkflowSelectorDrawer/components/WorkflowsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/components/WorkflowSelectorDrawer/components/WorkflowsList.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/hooks/usePipelineConversionNotification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/hooks/usePipelineConversionNotification.ts -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/hooks/usePipelineConversionSignposting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/hooks/usePipelineConversionSignposting.ts -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/hooks/usePipelineSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/hooks/usePipelineSelector.ts -------------------------------------------------------------------------------- /source/javascripts/pages/PipelinesPage/hooks/useRenamePipeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/PipelinesPage/hooks/useRenamePipeline.ts -------------------------------------------------------------------------------- /source/javascripts/pages/SecretsPage/SecretCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/SecretsPage/SecretCard.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/SecretsPage/SecretsPage.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/SecretsPage/SecretsPage.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/SecretsPage/SecretsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/SecretsPage/SecretsPage.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/StacksAndMachinesPage/StacksAndMachinesPage.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/StacksAndMachinesPage/StacksAndMachinesPage.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/StacksAndMachinesPage/StacksAndMachinesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/StacksAndMachinesPage/StacksAndMachinesPage.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/StacksAndMachinesPage/tabs/DefaultTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/StacksAndMachinesPage/tabs/DefaultTab.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/StacksAndMachinesPage/tabs/WorkflowsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/StacksAndMachinesPage/tabs/WorkflowsTab.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/StepBundlesPage/StepBundlesPage.store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/StepBundlesPage/StepBundlesPage.store.ts -------------------------------------------------------------------------------- /source/javascripts/pages/StepBundlesPage/StepBundlesPage.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/StepBundlesPage/StepBundlesPage.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/StepBundlesPage/StepBundlesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/StepBundlesPage/StepBundlesPage.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/StepBundlesPage/components/Drawers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/StepBundlesPage/components/Drawers.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/StepBundlesPage/components/StepBundlesCanvasPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/StepBundlesPage/components/StepBundlesCanvasPanel.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/StepBundlesPage/components/StepBundlesSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/StepBundlesPage/components/StepBundlesSelector.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/TriggersPage/SetupWebhookNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/TriggersPage/SetupWebhookNotification.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/TriggersPage/TriggersPage.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/TriggersPage/TriggersPage.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/TriggersPage/TriggersPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/TriggersPage/TriggersPage.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/TriggersPage/components/LegacyTriggers/ConvertLegacyTriggers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/TriggersPage/components/LegacyTriggers/ConvertLegacyTriggers.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/TriggersPage/components/LegacyTriggers/LegacyEmptyState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/TriggersPage/components/LegacyTriggers/LegacyEmptyState.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/TriggersPage/components/LegacyTriggers/LegacyTriggers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/TriggersPage/components/LegacyTriggers/LegacyTriggers.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/TriggersPage/components/LegacyTriggers/OrderOfTriggersNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/TriggersPage/components/LegacyTriggers/OrderOfTriggersNotification.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/TriggersPage/components/LegacyTriggers/SortableTriggerList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/TriggersPage/components/LegacyTriggers/SortableTriggerList.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/TriggersPage/components/LegacyTriggers/TriggerCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/TriggersPage/components/LegacyTriggers/TriggerCard.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/TriggersPage/components/TargetBasedTriggers/AddTriggerButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/TriggersPage/components/TargetBasedTriggers/AddTriggerButton.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/TriggersPage/components/TargetBasedTriggers/TargetBasedTriggers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/TriggersPage/components/TargetBasedTriggers/TargetBasedTriggers.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/WorkflowsPage/WorkflowsPage.store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/WorkflowsPage/WorkflowsPage.store.ts -------------------------------------------------------------------------------- /source/javascripts/pages/WorkflowsPage/WorkflowsPage.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/WorkflowsPage/WorkflowsPage.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/WorkflowsPage/WorkflowsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/WorkflowsPage/WorkflowsPage.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/WorkflowsPage/components/Drawers/Drawers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/WorkflowsPage/components/Drawers/Drawers.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/WorkflowsPage/components/WorkflowCanvasPanel/WorkflowCanvasPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/WorkflowsPage/components/WorkflowCanvasPanel/WorkflowCanvasPanel.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/WorkflowsPage/components/WorkflowSelector/WorkflowSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/WorkflowsPage/components/WorkflowSelector/WorkflowSelector.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/YmlPage/YmlPage.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/YmlPage/YmlPage.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/YmlPage/YmlPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/YmlPage/YmlPage.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/YmlPage/components/ConfigurationYmlSource.mswMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/YmlPage/components/ConfigurationYmlSource.mswMocks.ts -------------------------------------------------------------------------------- /source/javascripts/pages/YmlPage/components/ConfigurationYmlSourceDialog.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/YmlPage/components/ConfigurationYmlSourceDialog.stories.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/YmlPage/components/ConfigurationYmlSourceDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/YmlPage/components/ConfigurationYmlSourceDialog.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/YmlPage/components/OptimizeYouCiConfigBySplittingNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/YmlPage/components/OptimizeYouCiConfigBySplittingNotification.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/YmlPage/components/YmlEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/YmlPage/components/YmlEditor.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/YmlPage/components/YmlEditorHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/YmlPage/components/YmlEditorHeader.tsx -------------------------------------------------------------------------------- /source/javascripts/pages/YmlPage/components/YourCiConfigIsSplitNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/pages/YmlPage/components/YourCiConfigIsSplitNotification.tsx -------------------------------------------------------------------------------- /source/javascripts/proxy-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/proxy-worker.js -------------------------------------------------------------------------------- /source/javascripts/proxy-worker.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/proxy-worker.jsonc -------------------------------------------------------------------------------- /source/javascripts/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/routes.tsx -------------------------------------------------------------------------------- /source/javascripts/typings/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/typings/declarations.d.ts -------------------------------------------------------------------------------- /source/javascripts/typings/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/typings/globals.d.ts -------------------------------------------------------------------------------- /source/javascripts/typings/jest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/typings/jest.d.ts -------------------------------------------------------------------------------- /source/javascripts/utils/datadogCustomRumTiming.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/utils/datadogCustomRumTiming.ts -------------------------------------------------------------------------------- /source/javascripts/yaml.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/source/javascripts/yaml.worker.ts -------------------------------------------------------------------------------- /spec/__mocks__/zustand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/spec/__mocks__/zustand.ts -------------------------------------------------------------------------------- /spec/integration/fixture/test_local_step/step.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/spec/integration/fixture/test_local_step/step.yml -------------------------------------------------------------------------------- /spec/integration/fixture/untitled_step/step.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/spec/integration/fixture/untitled_step/step.yml -------------------------------------------------------------------------------- /spec/integration/test_bitrise.secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/spec/integration/test_bitrise.secrets.yml -------------------------------------------------------------------------------- /spec/integration/test_bitrise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/spec/integration/test_bitrise.yml -------------------------------------------------------------------------------- /spec/setup-jest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/spec/setup-jest.ts -------------------------------------------------------------------------------- /spec/smoke.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/spec/smoke.spec.ts -------------------------------------------------------------------------------- /spec/yaml-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/spec/yaml-helper.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/tsconfig.json -------------------------------------------------------------------------------- /version/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/version/build.go -------------------------------------------------------------------------------- /version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/version/version.go -------------------------------------------------------------------------------- /vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/vite-env.d.ts -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitrise-io/bitrise-workflow-editor/HEAD/vite.config.ts --------------------------------------------------------------------------------