Skip to content

[One Workflow] Deprecate direct AI connector step types in favor of ai.prompt#263694

Merged
Kiryous merged 4 commits intoelastic:mainfrom
Kiryous:16816-deprecate-ai-connector-steps
Apr 16, 2026
Merged

[One Workflow] Deprecate direct AI connector step types in favor of ai.prompt#263694
Kiryous merged 4 commits intoelastic:mainfrom
Kiryous:16816-deprecate-ai-connector-steps

Conversation

@Kiryous
Copy link
Copy Markdown
Contributor

@Kiryous Kiryous commented Apr 16, 2026

Summary

Extends the workflow step deprecation mechanism to support prefix-based matching and deprecates all direct AI connector step types (inference.*, bedrock.*, gen-ai.*, gemini.*) in favor of the purpose-built ai.prompt step.

  • Users were confused by the availability of raw AI connector steps alongside the purpose-built ai.* steps (Slack thread)
  • Deprecated steps are hidden from autocomplete, the Add Action menu, and AI agent discovery
  • Existing workflows using these step types continue to work — they just show a deprecation warning in the editor

Changes

  • Added DEPRECATED_STEP_PREFIX_METADATA to @kbn/workflows for prefix-based deprecation matching
  • Updated getDeprecatedStepMetadata() to check prefix matches after exact matches
  • Migrated all deprecation consumers from direct map access (deprecatedMap[key]) to function calls (getDeprecatedStepMetadata(key))
  • Updated the agent builder tool to detect prefix deprecation on dynamic connector steps

Screenshots

Editor deprecation warningsinference.completion and bedrock.invokeAI now show deprecation squiggles and hover tooltip:

Before (main) After
before after

Deprecation hover tooltip — hovering on a deprecated AI connector step shows the replacement suggestion:

deprecation hover

Autocomplete — typing inference shows "No suggestions" (all inference.* steps are filtered):

autocomplete no suggestions

Add Action menu — searching for "inference" or "bedrock" returns no options:

actions menu inference

ai.prompt not affected — searching "ai" in the actions menu still shows AI Prompt, AI Classify, AI Summarize:

actions menu ai

Exact-match deprecation still workskibana.createCase still shows deprecation warning (existing behavior preserved):

kibana cases deprecation

Closes elastic/security-team#16816

Test plan

  • Verify inference.*, bedrock.*, gen-ai.*, gemini.* steps no longer appear in autocomplete suggestions
  • Verify these steps no longer appear in the Add Action menu
  • Verify existing workflows using these steps show a deprecation warning in the editor
  • Verify ai.prompt step is not affected by the deprecation
  • Verify kibana.* Cases steps still show exact-match deprecation warnings

🤖 Generated with Claude Code

Extend the step deprecation mechanism to support prefix-based matching,
deprecating all inference.*, bedrock.*, gen-ai.*, and gemini.* step types.
Users are confused by the availability of raw AI connector steps alongside
the purpose-built ai.* steps; this hides them from autocomplete, the action
menu, and AI agent discovery while keeping them functional for existing
workflows.

Closes elastic/security-team#16816

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@Kiryous Kiryous self-assigned this Apr 16, 2026
@Kiryous Kiryous added Team:One Workflow Team label for One Workflow (Workflow automation) backport:version Backport to applied version labels v9.4.0 release_note:deprecation labels Apr 16, 2026
@Kiryous Kiryous marked this pull request as ready for review April 16, 2026 09:20
@Kiryous Kiryous requested a review from a team as a code owner April 16, 2026 09:20
@Kiryous Kiryous changed the title Deprecate direct AI connector step types in favor of ai.prompt [One Workflow] Deprecate direct AI connector step types in favor of ai.prompt Apr 16, 2026
Copy link
Copy Markdown
Contributor

@semd semd left a comment

Choose a reason for hiding this comment

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

LGTM

Added some improvement suggestions below

Comment thread src/platform/plugins/shared/workflows_management/common/schema.ts Outdated
Kiryous and others added 2 commits April 16, 2026 14:43
The output size test was missing the getDeprecatedStepMetadata function
in its jest.mock for common/schema, causing all 16 tests to fail with
TypeError.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…ution

- Use `isDeprecatedStepType` boolean helper instead of `getDeprecatedStepMetadata`
  in get_action_options.ts and get_completion_item_provider.ts (NIT from semd)
- Extract `getStepPrefixDeprecationInfo` from package's `getStepDeprecationInfo`
  so prefix-matching logic is reusable without duplication
- Move prefix resolution into `getDeprecatedStepMetadataMap` so known connector
  types are cached, and use `getStepPrefixDeprecationInfo` as fallback in
  `getDeprecatedStepMetadata` to avoid duplicating the loop

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@elasticmachine
Copy link
Copy Markdown
Contributor

💚 Build Succeeded

Metrics [docs]

Public APIs missing comments

Total count of every public API that lacks a comment. Target amount is 0. Run node scripts/build_api_docs --plugin [yourplugin] --stats comments for more detailed information.

id before after diff
@kbn/workflows 586 590 +4

Async chunks

Total size of all lazy-loaded chunks that will be downloaded as the user navigates the app

id before after diff
workflowsManagement 2.3MB 2.3MB +510.0B
Unknown metric groups

API count

id before after diff
@kbn/workflows 698 704 +6

History

cc @Kiryous

@Kiryous Kiryous merged commit 9af9077 into elastic:main Apr 16, 2026
19 checks passed
@kibanamachine
Copy link
Copy Markdown
Contributor

Starting backport for target branches: 9.4

https://github.com/elastic/kibana/actions/runs/24511110075

@kibanamachine
Copy link
Copy Markdown
Contributor

💔 All backports failed

Status Branch Result
9.4 Backport failed because of merge conflicts

You might need to backport the following PRs to 9.4:
- [One Workflow] Deprecate legacy Cases step types in workflow authoring (#262070)

Manual backport

To create the backport manually run:

node scripts/backport --pr 263694

Questions ?

Please refer to the Backport tool documentation

@kibanamachine kibanamachine added the backport missing Added to PRs automatically when the are determined to be missing a backport. label Apr 17, 2026
@kibanamachine
Copy link
Copy Markdown
Contributor

Friendly reminder: Looks like this PR hasn’t been backported yet.
To create automatically backports add a backport:* label or prevent reminders by adding the backport:skip label.
You can also create backports manually by running node scripts/backport --pr 263694 locally
cc: @Kiryous

@Kiryous
Copy link
Copy Markdown
Contributor Author

Kiryous commented Apr 20, 2026

💚 All backports created successfully

Status Branch Result
9.4

Note: Successful backport PRs will be merged automatically after passing CI.

Questions ?

Please refer to the Backport tool documentation

Kiryous added a commit to Kiryous/kibana that referenced this pull request Apr 20, 2026
…i.prompt (elastic#263694)

## Summary

Extends the workflow step deprecation mechanism to support
**prefix-based matching** and deprecates all direct AI connector step
types (`inference.*`, `bedrock.*`, `gen-ai.*`, `gemini.*`) in favor of
the purpose-built `ai.prompt` step.

- Users were confused by the availability of raw AI connector steps
alongside the purpose-built `ai.*` steps ([Slack
thread](https://elastic.slack.com/archives/C08U04SUN49/p1776097440515239))
- Deprecated steps are hidden from autocomplete, the Add Action menu,
and AI agent discovery
- Existing workflows using these step types continue to work — they just
show a deprecation warning in the editor

### Changes

- Added `DEPRECATED_STEP_PREFIX_METADATA` to `@kbn/workflows` for
prefix-based deprecation matching
- Updated `getDeprecatedStepMetadata()` to check prefix matches after
exact matches
- Migrated all deprecation consumers from direct map access
(`deprecatedMap[key]`) to function calls
(`getDeprecatedStepMetadata(key)`)
- Updated the agent builder tool to detect prefix deprecation on dynamic
connector steps

### Screenshots

**Editor deprecation warnings** — `inference.completion` and
`bedrock.invokeAI` now show deprecation squiggles and hover tooltip:

| Before (main) | After |
|---|---|
|
![before](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/s5rfd0ru-before_editor_nohover.webp)
|
![after](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/lfqf2d0v-after_editor_nohover.webp)
|

**Deprecation hover tooltip** — hovering on a deprecated AI connector
step shows the replacement suggestion:

![deprecation
hover](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/e93t9gse-after_editor_hover.webp)

**Autocomplete** — typing `inference` shows "No suggestions" (all
`inference.*` steps are filtered):

![autocomplete no
suggestions](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/ldyuw3yh-test_autocomplete_inference.webp)

**Add Action menu** — searching for "inference" or "bedrock" returns no
options:

![actions menu
inference](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/e1nwunw0-test_actions_menu_inference.webp)

**`ai.prompt` not affected** — searching "ai" in the actions menu still
shows AI Prompt, AI Classify, AI Summarize:

![actions menu
ai](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/e1jpox1j-test_actions_menu_ai.webp)

**Exact-match deprecation still works** — `kibana.createCase` still
shows deprecation warning (existing behavior preserved):

![kibana cases
deprecation](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/mnn2rrwx-test_kibana_cases_clean.webp)

Closes elastic/security-team#16816

## Test plan

- [x] Verify `inference.*`, `bedrock.*`, `gen-ai.*`, `gemini.*` steps no
longer appear in autocomplete suggestions
- [x] Verify these steps no longer appear in the Add Action menu
- [x] Verify existing workflows using these steps show a deprecation
warning in the editor
- [x] Verify `ai.prompt` step is not affected by the deprecation
- [x] Verify `kibana.*` Cases steps still show exact-match deprecation
warnings

🤖 Generated with [Claude Code](https://claude.com/claude-code)

---------

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
(cherry picked from commit 9af9077)
Kiryous added a commit that referenced this pull request Apr 20, 2026
…r of ai.prompt (#263694) (#264354)

# Backport

This will backport the following commits from `main` to `9.4`:
- [[One Workflow] Deprecate direct AI connector step types in favor of
ai.prompt (#263694)](#263694)

<!--- Backport version: 11.0.1 -->

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sorenlouv/backport)

<!--BACKPORT [{"author":{"name":"Kirill
Chernakov","email":"yakiryous@gmail.com"},"sourceCommit":{"committedDate":"2026-04-16T12:48:51Z","message":"[One
Workflow] Deprecate direct AI connector step types in favor of ai.prompt
(#263694)\n\n## Summary\n\nExtends the workflow step deprecation
mechanism to support\n**prefix-based matching** and deprecates all
direct AI connector step\ntypes (`inference.*`, `bedrock.*`, `gen-ai.*`,
`gemini.*`) in favor of\nthe purpose-built `ai.prompt` step.\n\n- Users
were confused by the availability of raw AI connector steps\nalongside
the purpose-built `ai.*` steps
([Slack\nthread](https://elastic.slack.com/archives/C08U04SUN49/p1776097440515239))\n-
Deprecated steps are hidden from autocomplete, the Add Action menu,\nand
AI agent discovery\n- Existing workflows using these step types continue
to work — they just\nshow a deprecation warning in the editor\n\n###
Changes\n\n- Added `DEPRECATED_STEP_PREFIX_METADATA` to `@kbn/workflows`
for\nprefix-based deprecation matching\n- Updated
`getDeprecatedStepMetadata()` to check prefix matches after\nexact
matches\n- Migrated all deprecation consumers from direct map
access\n(`deprecatedMap[key]`) to function
calls\n(`getDeprecatedStepMetadata(key)`)\n- Updated the agent builder
tool to detect prefix deprecation on dynamic\nconnector steps\n\n###
Screenshots\n\n**Editor deprecation warnings** — `inference.completion`
and\n`bedrock.invokeAI` now show deprecation squiggles and hover
tooltip:\n\n| Before (main) | After
|\n|---|---|\n|\n![before](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/s5rfd0ru-before_editor_nohover.webp)\n|\n![after](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/lfqf2d0v-after_editor_nohover.webp)\n|\n\n**Deprecation
hover tooltip** — hovering on a deprecated AI connector\nstep shows the
replacement
suggestion:\n\n![deprecation\nhover](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/e93t9gse-after_editor_hover.webp)\n\n**Autocomplete**
— typing `inference` shows \"No suggestions\" (all\n`inference.*` steps
are filtered):\n\n![autocomplete
no\nsuggestions](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/ldyuw3yh-test_autocomplete_inference.webp)\n\n**Add
Action menu** — searching for \"inference\" or \"bedrock\" returns
no\noptions:\n\n![actions
menu\ninference](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/e1nwunw0-test_actions_menu_inference.webp)\n\n**`ai.prompt`
not affected** — searching \"ai\" in the actions menu still\nshows AI
Prompt, AI Classify, AI Summarize:\n\n![actions
menu\nai](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/e1jpox1j-test_actions_menu_ai.webp)\n\n**Exact-match
deprecation still works** — `kibana.createCase` still\nshows deprecation
warning (existing behavior preserved):\n\n![kibana
cases\ndeprecation](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/mnn2rrwx-test_kibana_cases_clean.webp)\n\nCloses
elastic/security-team#16816\n\n## Test plan\n\n- [x] Verify
`inference.*`, `bedrock.*`, `gen-ai.*`, `gemini.*` steps no\nlonger
appear in autocomplete suggestions\n- [x] Verify these steps no longer
appear in the Add Action menu\n- [x] Verify existing workflows using
these steps show a deprecation\nwarning in the editor\n- [x] Verify
`ai.prompt` step is not affected by the deprecation\n- [x] Verify
`kibana.*` Cases steps still show exact-match deprecation\nwarnings\n\n🤖
Generated with [Claude
Code](https://claude.com/claude-code)\n\n---------\n\nCo-authored-by:
Claude Opus 4.6 (1M context)
<noreply@anthropic.com>","sha":"9af9077847193ab7e10cef384a9aa099e9b1ce22","branchLabelMapping":{"^v9.5.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["release_note:deprecation","backport
missing","backport:version","Team:One
Workflow","v9.4.0","v9.5.0"],"title":"[One Workflow] Deprecate direct AI
connector step types in favor of
ai.prompt","number":263694,"url":"https://github.com/elastic/kibana/pull/263694","mergeCommit":{"message":"[One
Workflow] Deprecate direct AI connector step types in favor of ai.prompt
(#263694)\n\n## Summary\n\nExtends the workflow step deprecation
mechanism to support\n**prefix-based matching** and deprecates all
direct AI connector step\ntypes (`inference.*`, `bedrock.*`, `gen-ai.*`,
`gemini.*`) in favor of\nthe purpose-built `ai.prompt` step.\n\n- Users
were confused by the availability of raw AI connector steps\nalongside
the purpose-built `ai.*` steps
([Slack\nthread](https://elastic.slack.com/archives/C08U04SUN49/p1776097440515239))\n-
Deprecated steps are hidden from autocomplete, the Add Action menu,\nand
AI agent discovery\n- Existing workflows using these step types continue
to work — they just\nshow a deprecation warning in the editor\n\n###
Changes\n\n- Added `DEPRECATED_STEP_PREFIX_METADATA` to `@kbn/workflows`
for\nprefix-based deprecation matching\n- Updated
`getDeprecatedStepMetadata()` to check prefix matches after\nexact
matches\n- Migrated all deprecation consumers from direct map
access\n(`deprecatedMap[key]`) to function
calls\n(`getDeprecatedStepMetadata(key)`)\n- Updated the agent builder
tool to detect prefix deprecation on dynamic\nconnector steps\n\n###
Screenshots\n\n**Editor deprecation warnings** — `inference.completion`
and\n`bedrock.invokeAI` now show deprecation squiggles and hover
tooltip:\n\n| Before (main) | After
|\n|---|---|\n|\n![before](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/s5rfd0ru-before_editor_nohover.webp)\n|\n![after](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/lfqf2d0v-after_editor_nohover.webp)\n|\n\n**Deprecation
hover tooltip** — hovering on a deprecated AI connector\nstep shows the
replacement
suggestion:\n\n![deprecation\nhover](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/e93t9gse-after_editor_hover.webp)\n\n**Autocomplete**
— typing `inference` shows \"No suggestions\" (all\n`inference.*` steps
are filtered):\n\n![autocomplete
no\nsuggestions](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/ldyuw3yh-test_autocomplete_inference.webp)\n\n**Add
Action menu** — searching for \"inference\" or \"bedrock\" returns
no\noptions:\n\n![actions
menu\ninference](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/e1nwunw0-test_actions_menu_inference.webp)\n\n**`ai.prompt`
not affected** — searching \"ai\" in the actions menu still\nshows AI
Prompt, AI Classify, AI Summarize:\n\n![actions
menu\nai](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/e1jpox1j-test_actions_menu_ai.webp)\n\n**Exact-match
deprecation still works** — `kibana.createCase` still\nshows deprecation
warning (existing behavior preserved):\n\n![kibana
cases\ndeprecation](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/mnn2rrwx-test_kibana_cases_clean.webp)\n\nCloses
elastic/security-team#16816\n\n## Test plan\n\n- [x] Verify
`inference.*`, `bedrock.*`, `gen-ai.*`, `gemini.*` steps no\nlonger
appear in autocomplete suggestions\n- [x] Verify these steps no longer
appear in the Add Action menu\n- [x] Verify existing workflows using
these steps show a deprecation\nwarning in the editor\n- [x] Verify
`ai.prompt` step is not affected by the deprecation\n- [x] Verify
`kibana.*` Cases steps still show exact-match deprecation\nwarnings\n\n🤖
Generated with [Claude
Code](https://claude.com/claude-code)\n\n---------\n\nCo-authored-by:
Claude Opus 4.6 (1M context)
<noreply@anthropic.com>","sha":"9af9077847193ab7e10cef384a9aa099e9b1ce22"}},"sourceBranch":"main","suggestedTargetBranches":["9.4"],"targetPullRequestStates":[{"branch":"9.4","label":"v9.4.0","branchLabelMappingKey":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"},{"branch":"main","label":"v9.5.0","branchLabelMappingKey":"^v9.5.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/263694","number":263694,"mergeCommit":{"message":"[One
Workflow] Deprecate direct AI connector step types in favor of ai.prompt
(#263694)\n\n## Summary\n\nExtends the workflow step deprecation
mechanism to support\n**prefix-based matching** and deprecates all
direct AI connector step\ntypes (`inference.*`, `bedrock.*`, `gen-ai.*`,
`gemini.*`) in favor of\nthe purpose-built `ai.prompt` step.\n\n- Users
were confused by the availability of raw AI connector steps\nalongside
the purpose-built `ai.*` steps
([Slack\nthread](https://elastic.slack.com/archives/C08U04SUN49/p1776097440515239))\n-
Deprecated steps are hidden from autocomplete, the Add Action menu,\nand
AI agent discovery\n- Existing workflows using these step types continue
to work — they just\nshow a deprecation warning in the editor\n\n###
Changes\n\n- Added `DEPRECATED_STEP_PREFIX_METADATA` to `@kbn/workflows`
for\nprefix-based deprecation matching\n- Updated
`getDeprecatedStepMetadata()` to check prefix matches after\nexact
matches\n- Migrated all deprecation consumers from direct map
access\n(`deprecatedMap[key]`) to function
calls\n(`getDeprecatedStepMetadata(key)`)\n- Updated the agent builder
tool to detect prefix deprecation on dynamic\nconnector steps\n\n###
Screenshots\n\n**Editor deprecation warnings** — `inference.completion`
and\n`bedrock.invokeAI` now show deprecation squiggles and hover
tooltip:\n\n| Before (main) | After
|\n|---|---|\n|\n![before](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/s5rfd0ru-before_editor_nohover.webp)\n|\n![after](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/lfqf2d0v-after_editor_nohover.webp)\n|\n\n**Deprecation
hover tooltip** — hovering on a deprecated AI connector\nstep shows the
replacement
suggestion:\n\n![deprecation\nhover](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/e93t9gse-after_editor_hover.webp)\n\n**Autocomplete**
— typing `inference` shows \"No suggestions\" (all\n`inference.*` steps
are filtered):\n\n![autocomplete
no\nsuggestions](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/ldyuw3yh-test_autocomplete_inference.webp)\n\n**Add
Action menu** — searching for \"inference\" or \"bedrock\" returns
no\noptions:\n\n![actions
menu\ninference](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/e1nwunw0-test_actions_menu_inference.webp)\n\n**`ai.prompt`
not affected** — searching \"ai\" in the actions menu still\nshows AI
Prompt, AI Classify, AI Summarize:\n\n![actions
menu\nai](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/e1jpox1j-test_actions_menu_ai.webp)\n\n**Exact-match
deprecation still works** — `kibana.createCase` still\nshows deprecation
warning (existing behavior preserved):\n\n![kibana
cases\ndeprecation](https://pub-6b50802d113345dea50c783e8280b53e.r2.dev/artifacts/20260416/mnn2rrwx-test_kibana_cases_clean.webp)\n\nCloses
elastic/security-team#16816\n\n## Test plan\n\n- [x] Verify
`inference.*`, `bedrock.*`, `gen-ai.*`, `gemini.*` steps no\nlonger
appear in autocomplete suggestions\n- [x] Verify these steps no longer
appear in the Add Action menu\n- [x] Verify existing workflows using
these steps show a deprecation\nwarning in the editor\n- [x] Verify
`ai.prompt` step is not affected by the deprecation\n- [x] Verify
`kibana.*` Cases steps still show exact-match deprecation\nwarnings\n\n🤖
Generated with [Claude
Code](https://claude.com/claude-code)\n\n---------\n\nCo-authored-by:
Claude Opus 4.6 (1M context)
<noreply@anthropic.com>","sha":"9af9077847193ab7e10cef384a9aa099e9b1ce22"}}]}]
BACKPORT-->

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@kibanamachine kibanamachine removed the backport missing Added to PRs automatically when the are determined to be missing a backport. label Apr 20, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

backport:version Backport to applied version labels release_note:deprecation Team:One Workflow Team label for One Workflow (Workflow automation) v9.4.0 v9.5.0

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants