-
Notifications
You must be signed in to change notification settings - Fork 3.5k
[ci] Allow triggering exhaustive tests from PRs depending on path #18202
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
base: main
Are you sure you want to change the base?
Changes from all commits
e7e1218
4b19fe5
eb8c8e4
53323ab
e7b622b
6836cbe
5f31a13
66f5eba
8060880
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,63 @@ | ||
{ | ||
"jobs": [ | ||
{ | ||
"enabled": true, | ||
"pipeline_slug": "logstash-pull-request-pipeline", | ||
"allow_org_users": true, | ||
"allowed_repo_permissions": ["admin", "write"], | ||
"allowed_list": ["dependabot[bot]", "mergify[bot]", "github-actions[bot]", "elastic-vault-github-plugin-prod[bot]"], | ||
"set_commit_status": true, | ||
"build_on_commit": true, | ||
"build_on_comment": true, | ||
"trigger_comment_regex": "^(?:(?:buildkite\\W+)?(?:build|test)\\W+(?:this|it))", | ||
"always_trigger_comment_regex": "^(?:(?:buildkite\\W+)?(?:build|test)\\W+(?:this|it))", | ||
"skip_ci_labels": [ ], | ||
"skip_target_branches": [ ], | ||
"skip_ci_on_only_changed": [ | ||
"^.github/", | ||
"^docs/", | ||
"^.mergify.yml$", | ||
"^.pre-commit-config.yaml", | ||
"\\.md$" | ||
], | ||
"always_require_ci_on_changed": [ ] | ||
} | ||
] | ||
} | ||
"jobs": [ | ||
{ | ||
"enabled": true, | ||
"pipeline_slug": "logstash-pull-request-pipeline", | ||
"allow_org_users": true, | ||
"allowed_repo_permissions": [ | ||
"admin", | ||
"write" | ||
], | ||
"allowed_list": [ | ||
"dependabot[bot]", | ||
"mergify[bot]", | ||
"github-actions[bot]", | ||
"elastic-vault-github-plugin-prod[bot]" | ||
], | ||
"set_commit_status": true, | ||
"build_on_commit": true, | ||
"build_on_comment": true, | ||
"trigger_comment_regex": "^(?:(?:buildkite\\W+)?(?:build|test)\\W+(?:this|it))", | ||
"always_trigger_comment_regex": "^(?:(?:buildkite\\W+)?(?:build|test)\\W+(?:this|it))", | ||
"skip_ci_labels": [], | ||
"skip_target_branches": [], | ||
"skip_ci_on_only_changed": [ | ||
"^.github/", | ||
"^docs/", | ||
"^.mergify.yml$", | ||
"^.pre-commit-config.yaml", | ||
"\\.md$" | ||
], | ||
"always_require_ci_on_changed": [] | ||
}, | ||
{ | ||
"enabled": true, | ||
"pipeline_slug": "logstash-exhaustive-tests-pipeline", | ||
"allow_org_users": true, | ||
"allowed_repo_permissions": [ | ||
"admin", | ||
"write" | ||
], | ||
"allowed_list": [ | ||
"dependabot[bot]", | ||
"mergify[bot]", | ||
"github-actions[bot]" | ||
], | ||
Comment on lines
+41
to
+45
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If we don't build on comment, should we remove this entry? |
||
"set_commit_status": true, | ||
"build_on_commit": false, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm certainly confused with the description and this flag |
||
"build_on_comment": true, | ||
"trigger_comment_regex": "^(?:(?:/run\\W+)?(?:exhaustive)\\W+(?:tests))", | ||
"always_trigger_comment_regex": "^(?:(?:/run\\W+)?(?:exhaustive)\\W+(?:tests))", | ||
"skip_ci_labels": [], | ||
"skip_target_branches": [], | ||
"skip_ci_on_only_changed": [ | ||
"^.github/", | ||
"^docs/", | ||
"^.mergify.yml$", | ||
"^.pre-commit-config.yaml", | ||
"\\.md$" | ||
Comment on lines
+53
to
+58
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If we don't build on commit should we remove these entries? |
||
], | ||
"always_require_ci_on_changed": [] | ||
} | ||
] | ||
} |
Uh oh!
There was an error while loading. Please reload this page.