[PR PREVIEW - DO NOT MERGE] 🌿 Fern Regeneration -- February 12, 2026 #5601
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ci-release-label | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - labeled | |
| jobs: | |
| end-to-end-test: | |
| runs-on: ubuntu-latest | |
| if: contains(github.event.pull_request.labels.*.name, 'release') | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v3 | |
| - name: Set up python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: 3.9 | |
| - name: Bootstrap poetry | |
| run: make setup-poetry | |
| - name: Install Python dependencies | |
| run: poetry install | |
| - name: Run end-to-end tests | |
| env: | |
| VELLUM_API_URL: http://localhost:8000 | |
| run: poetry run python scripts/end_to_end_test.py --filter skip-all |