Skip to content

[clickhouse] Optimize spans table for faster searching #13534

[clickhouse] Optimize spans table for faster searching

[clickhouse] Optimize spans table for faster searching #13534

Workflow file for this run

name: Verify PR Label
on:
merge_group:
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
- labeled
- unlabeled
permissions:
contents: read
jobs:
check-label:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@a90bcbc6539c36a85cdfeb73f7e2f433735f215b # v2.15.0
with:
egress-policy: audit
- name: Check PR label
# Only fail if NOT merge_group, AND labels DO NOT contain 'changelog:'
if: |
github.event_name != 'merge_group' &&
contains(join(github.event.pull_request.labels.*.name, ','), 'changelog:') == false
run: |
echo "::error::Pull request is missing a required 'changelog:' label. Found labels: ${{ join(github.event.pull_request.labels.*.name, ', ') }}"
exit 1