-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make saved_objects_tagging
plugin shared
#205695
Make saved_objects_tagging
plugin shared
#205695
Conversation
A documentation preview will be available soon. Request a new doc build by commenting
If your PR continues to fail for an unknown reason, the doc build pipeline may be broken. Elastic employees can check the pipeline status here. |
if (!module.group || module.group === 'common' || !module.visibility) { | ||
const { group, visibility } = module.manifest; | ||
|
||
if (!group || group === 'common' || !visibility) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix a bug in the script: use group
and visibility
from the manifest, rather than those inferred from path.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks!
Pinging @elastic/kibana-core (Team:Core) |
💛 Build succeeded, but was flaky
Failed CI StepsTest Failures
Metrics [docs]
|
Starting backport for target branches: 8.x |
💔 All backports failed
Manual backportTo create the backport manually run:
Questions ?Please refer to the Backport tool documentation |
## Summary So that it can be used from `streams_app` (o11y). See elastic#204309 Steps to relocate: 1. Fetch latest `main` 2. Update the `group` and/or `visibility` in the module's manifest. 3. Run `node scripts/relocate --moveOnly @kbn/saved-objects-tagging-plugin`
## Summary So that it can be used from `streams_app` (o11y). See elastic#204309 Steps to relocate: 1. Fetch latest `main` 2. Update the `group` and/or `visibility` in the module's manifest. 3. Run `node scripts/relocate --moveOnly @kbn/saved-objects-tagging-plugin` (cherry picked from commit a8579bb) # Conflicts: # .github/CODEOWNERS # packages/kbn-relocate/utils/relocate.ts
💚 All backports created successfully
Note: Successful backport PRs will be merged automatically after passing CI. Questions ?Please refer to the Backport tool documentation |
Summary
So that it can be used from
streams_app
(o11y).See #204309
Steps to relocate:
main
group
and/orvisibility
in the module's manifest.node scripts/relocate --moveOnly @kbn/saved-objects-tagging-plugin