Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
20 changes: 20 additions & 0 deletions .buildkite/pull-requests.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"jobs": [
{
"enabled": true,
"pipelineSlug": "apm-server-package",
"allow_org_users": true,
"allowed_repo_permissions": ["admin", "write"],
"allowed_list": ["dependabot[bot]", "elastic-observability-automation[bot]", "github-actions[bot]", "mergify[bot]"],
"build_on_commit": true,
"build_on_comment": true,
"set_commit_status": true,
"trigger_comment_regex": "^/package",
"always_trigger_comment_regex": "^/package",
"skip_ci_labels": [ "skip-ci" ],
"skip_target_branches": [ ],
"skip_ci_on_only_changed": [ "^.ci/", "^.github/", "catalog-info.yaml", "^updatecli-compose.yaml", "^changelog", "^docs/", "\\.md$", "^docker-compose.yml", "^.mergify.yml", "^.pre-commit-config.yaml", "\\.txt$", "Tiltfile" ],
"always_require_ci_on_changed": [ ]
}
]
}
12 changes: 9 additions & 3 deletions catalog-info.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,27 @@ spec:
metadata:
name: apm-server-package
spec:
branch_configuration: "main 7.* 8.* 9.*"
repository: elastic/apm-server
pipeline_file: ".buildkite/package.yml"
provider_settings:
build_branches: true
build_pull_requests: true
build_tags: false
filter_enabled: true
filter_condition: build.branch == "main" || build.branch == "8.x" || build.branch =~ /^[0-9]+\.[0-9]+$$/ || build.branch =~ /^feature\//
cancel_intermediate_builds: false
skip_intermediate_builds: false
filter_condition: >-
build.pull_request.id == null || (build.creator.name == 'elasticmachine' && build.pull_request.id != null)
cancel_intermediate_builds: true
cancel_intermediate_builds_branch_filter: "!main !7.* !8.* !9.*"
skip_intermediate_builds: true
skip_intermediate_builds_branch_filter: "!main !7.* !8.* !9.*"
teams:
obs-ds-intake-services: {}
observablt-robots: {}
everyone:
access_level: READ_ONLY
env:
ELASTIC_PR_COMMENTS_ENABLED: 'true'
schedules:
Weekly 7.17:
branch: "7.17"
Expand Down