Skip to content

Add HonestDiD integration for dCDH, summary() Phase 3 blocks #44

Add HonestDiD integration for dCDH, summary() Phase 3 blocks

Add HonestDiD integration for dCDH, summary() Phase 3 blocks #44

Workflow file for this run

name: CI Gate
on:
pull_request:
branches: [main]
types: [opened, synchronize, reopened, labeled, unlabeled]
jobs:
ci-gate:
name: CI Gate
runs-on: ubuntu-latest
steps:
- name: Require ready-for-ci label on PRs
if: >-
github.event_name == 'pull_request'
&& !contains(github.event.pull_request.labels.*.name, 'ready-for-ci')
run: |
echo "::error::The 'ready-for-ci' label is required to run CI tests."
echo "Add the label to trigger CI."
exit 1