Skip to content
Merged
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
8d24435
remove spacebinding request migration controller
mfrancisc Dec 7, 2023
a25fb02
Merge branch 'master' of github.com:mfrancisc/host-operator
mfrancisc Jan 2, 2024
fd840c6
Merge branch 'master' of github.com:mfrancisc/host-operator
mfrancisc Feb 7, 2024
0221d40
Merge branch 'master' of github.com:mfrancisc/host-operator
mfrancisc Feb 14, 2024
0f4717d
Merge branch 'master' of github.com:mfrancisc/host-operator
mfrancisc Feb 19, 2024
0977ae6
Merge branch 'master' of github.com:mfrancisc/host-operator
mfrancisc Mar 26, 2024
7aa35c5
Merge branch 'master' of github.com:mfrancisc/host-operator
mfrancisc Apr 3, 2024
d09f3b8
Merge branch 'master' of github.com:mfrancisc/host-operator
mfrancisc Apr 4, 2024
79c20ca
Merge branch 'master' of github.com:mfrancisc/host-operator
mfrancisc Apr 25, 2024
b21f39f
Merge branch 'master' of github.com:mfrancisc/host-operator
mfrancisc May 27, 2024
b0aea00
Merge branch 'master' of github.com:mfrancisc/host-operator
mfrancisc May 31, 2024
e9e35bc
Merge branch 'master' of github.com:mfrancisc/host-operator
mfrancisc Jul 29, 2024
969562e
Merge branch 'master' of github.com:mfrancisc/host-operator
Aug 28, 2024
344bc04
Merge branch 'master' of github.com:mfrancisc/host-operator
Sep 12, 2024
ea71877
Merge branch 'master' of github.com:mfrancisc/host-operator
Sep 23, 2024
ef294f7
Merge branch 'master' of github.com:mfrancisc/host-operator
Sep 27, 2024
1f8d51d
Merge branch 'master' of github.com:mfrancisc/host-operator
Oct 31, 2024
b27cde7
Merge branch 'master' of github.com:mfrancisc/host-operator
Nov 6, 2024
bbb2689
Merge branch 'master' of github.com:mfrancisc/host-operator
Nov 18, 2024
ec51de9
Merge branch 'master' of github.com:mfrancisc/host-operator
Nov 28, 2024
cc3a260
Merge branch 'master' of github.com:mfrancisc/host-operator
Dec 16, 2024
14b1b26
Merge branch 'master' of github.com:mfrancisc/host-operator
Jan 7, 2025
28b6608
Merge branch 'master' of github.com:mfrancisc/host-operator
Jan 9, 2025
d844c83
Merge branch 'master' of github.com:mfrancisc/host-operator
Jan 16, 2025
a08f667
Merge branch 'master' of github.com:mfrancisc/host-operator
Jan 17, 2025
553b7fe
Merge branch 'master' of github.com:mfrancisc/host-operator
Jan 23, 2025
4e38ce0
Merge branch 'master' of github.com:mfrancisc/host-operator
Feb 10, 2025
094954e
Merge branch 'master' of github.com:mfrancisc/host-operator
Feb 25, 2025
66d81bd
Merge branch 'master' of github.com:mfrancisc/host-operator
Feb 27, 2025
79863da
Merge branch 'master' of github.com:mfrancisc/host-operator
Mar 4, 2025
a549263
Merge branch 'master' of github.com:mfrancisc/host-operator
Jun 11, 2025
a6054fd
Merge branch 'master' of github.com:mfrancisc/host-operator
Oct 1, 2025
55ad5e6
Merge branch 'master' of github.com:mfrancisc/host-operator
Oct 27, 2025
8942787
Merge branch 'master' of github.com:mfrancisc/host-operator
Nov 10, 2025
e8cd3bd
add workato webhook config
Nov 10, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,11 @@ spec:
type: array
x-kubernetes-list-type: atomic
type: object
workatoWebHookURL:
description: |-
WorkatoWebHookURL is used by the UI to push events to Marketo for analytics purposes.
The webhook URL is unique per environment.
type: string
Comment on lines +410 to +414
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

Service name mismatch between field name and description.

The field is named workatoWebHookURL but the description refers to "Marketo" — these are different services (Workato is an integration platform; Marketo is a marketing automation platform). Given the PR title mentions "add workato", the description appears incorrect.

Apply this diff to correct the description:

                      workatoWebHookURL:
                        description: |-
-                          WorkatoWebHookURL is used by the UI to push events to Marketo for analytics purposes.
+                          WorkatoWebHookURL is used by the UI to push events to Workato for analytics purposes.
                          The webhook URL is unique per environment.
                        type: string
🤖 Prompt for AI Agents
In config/crd/bases/toolchain.dev.openshift.com_toolchainconfigs.yaml around
lines 410 to 414, the description for the field workatoWebHookURL incorrectly
refers to "Marketo"; update the description to reference Workato and clarify
intent (e.g., "Workato webhook URL used by the UI to push events for
analytics/integration purposes; the webhook URL is unique per environment").
Ensure the field name and description consistently mention Workato and retain
existing wording about uniqueness per environment and type string.

type: object
spaceConfig:
description: Keeps parameters necessary for configuring Space
Expand Down
Loading