Skip to content
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

Add plugin list to docs that is generated from the repo #71731

Merged
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
a58f230
plugins list
stacey-gammon Jul 14, 2020
47645fa
Merge branch 'master' of github.com:elastic/kibana into implement/gen…
spalger Jul 14, 2020
ae2fa56
[docs] generate listing of all Kibana plugins in docs
spalger Jul 14, 2020
e100f3b
point to built output of kbn/es
spalger Jul 14, 2020
1ca77b3
revert kbn/es changes
spalger Jul 14, 2020
b44bbcb
fix kbn/es revert
spalger Jul 14, 2020
f4dc840
Merge branch 'master' into implement/generated-plugin-list-in-docs
elasticmachine Jul 14, 2020
4955c26
ensure that correct types flow from simple discovery helper
spalger Jul 14, 2020
60662a4
Merge branch 'master' of github.com:elastic/kibana into implement/gen…
spalger Jul 14, 2020
eb5fdf8
Merge branch 'master' into implement/generated-plugin-list-in-docs
elasticmachine Jul 15, 2020
78db4d5
Update packages/kbn-dev-utils/src/plugin_list/generate_plugin_list.ts
Jul 15, 2020
6a13421
Merge branch 'master' of github.com:elastic/kibana into implement/gen…
spalger Jul 15, 2020
c015975
switch to a comment at the top of the file
spalger Jul 15, 2020
84e54f7
require CI when changes to an autogenerated doc file are made
spalger Jul 15, 2020
656bfb0
fix logic in areChangesSkippable()
spalger Jul 15, 2020
32848c1
fix reading not-skippable paths
spalger Jul 15, 2020
9efb2ef
Merge branch 'master' into implement/generated-plugin-list-in-docs
elasticmachine Jul 15, 2020
3ac5840
Merge branch 'master' of github.com:elastic/kibana into implement/gen…
spalger Jul 15, 2020
303a634
update plugin list docs
spalger Jul 15, 2020
ad70dbf
Merge branch 'master' of github.com:elastic/kibana into implement/gen…
spalger Jul 16, 2020
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
13 changes: 13 additions & 0 deletions .ci/pipeline-library/src/test/prChanges.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,17 @@ class PrChangesTest extends KibanaBasePipelineTest {

assertFalse(prChanges.areChangesSkippable())
}

@Test
void 'areChangesSkippable() with skippable changes that are in notSkippablePaths'() {
props([
githubPrs: [
getChanges: { [
[filename: 'docs/developer/architecture/code-exploration.asciidoc'],
spalger marked this conversation as resolved.
Show resolved Hide resolved
] },
],
])

assertFalse(prChanges.areChangesSkippable())
}
}
Loading