Skip to content

feat(v4): complete event-study df provenance - SunAbraham/dCDH event_study_df, LPDiD pooled_df (M-092 follow-up) #2108

feat(v4): complete event-study df provenance - SunAbraham/dCDH event_study_df, LPDiD pooled_df (M-092 follow-up)

feat(v4): complete event-study df provenance - SunAbraham/dCDH event_study_df, LPDiD pooled_df (M-092 follow-up) #2108

Workflow file for this run

name: CI Gate
on:
pull_request:
branches: [main]
types: [opened, synchronize, reopened, labeled, unlabeled]
permissions: {}
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