Skip to content

Commit 9bda5cb

Browse files
committed
Launch frozen CP3 protected four-arm evaluation
1 parent 7e37328 commit 9bda5cb

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/checkpoint3-protected-eval.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: Checkpoint 3 protected four-arm evaluation
22

33
on:
4+
push:
5+
branches: [triskelion-runtime-cp1]
6+
paths:
7+
- .github/workflows/checkpoint3-protected-eval.yml
48
workflow_run:
59
workflows: ["Checkpoint 3 build acquisition capability"]
610
types: [completed]
@@ -18,18 +22,18 @@ permissions:
1822
env:
1923
RIVER_API_KEY: ${{ secrets.RIVER_API_KEY }}
2024
PYTHONDONTWRITEBYTECODE: "1"
21-
CAPABILITY_RUN_ID: ${{ github.event_name == 'workflow_run' && github.event.workflow_run.id || inputs.capability_run_id }}
25+
CAPABILITY_RUN_ID: ${{ github.event_name == 'workflow_run' && github.event.workflow_run.id || github.event_name == 'workflow_dispatch' && inputs.capability_run_id || '31878373257' }}
2226

2327
jobs:
2428
evaluate:
25-
if: github.event_name == 'workflow_dispatch' || (github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.head_branch == 'triskelion-runtime-cp1')
29+
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' || (github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.head_branch == 'triskelion-runtime-cp1')
2630
runs-on: ubuntu-22.04
2731
timeout-minutes: 350
2832
steps:
2933
- uses: actions/checkout@v4
3034
- uses: actions/setup-python@v5
3135
with:
32-
python-version: '3.11'
36+
python-version: '3.12'
3337

3438
- name: Confirm frozen provider binding
3539
run: test -n "$RIVER_API_KEY" || { echo 'RIVER_API_KEY is not bound to this repository'; exit 78; }

0 commit comments

Comments
 (0)