Skip to content

LOGBROKER-10206 Refactor writers #1031

LOGBROKER-10206 Refactor writers

LOGBROKER-10206 Refactor writers #1031

Workflow file for this run

name: Check SLO Label
on:
pull_request:
types: [opened, reopened, synchronize, labeled, unlabeled]
jobs:
check-slo-label:
if: (!contains(github.event.pull_request.labels.*.name, 'no slo'))
runs-on: ubuntu-latest
steps:
- name: Fail if SLO label is missing
if: "!contains(github.event.pull_request.labels.*.name, 'SLO')"
run: |
echo "PR must have the \"SLO\" label to proceed."
exit 1