From b1a374b827da50505fad8509fef0cdd70ec49ef2 Mon Sep 17 00:00:00 2001 From: Adam Wilson Date: Thu, 28 Aug 2025 06:53:41 -0600 Subject: [PATCH] redistribute cron schedules (emphasize tests #2, #4) --- .../workflows/test_00_benign_prompts_no_mitigation.01-20.yml | 4 ++-- .../workflows/test_00_benign_prompts_no_mitigation.21-40.yml | 4 ++-- .../workflows/test_00_benign_prompts_no_mitigation.41-60.yml | 4 ++-- .../workflows/test_00_benign_prompts_no_mitigation.61-80.yml | 4 ++-- .../test_00_benign_prompts_no_mitigation.81-100.yml | 4 ++-- .github/workflows/test_02_malicious_prompts_cot.01-20.yml | 2 +- .github/workflows/test_02_malicious_prompts_cot.21-40.yml | 2 +- .github/workflows/test_02_malicious_prompts_cot.41-60.yml | 2 +- .github/workflows/test_02_malicious_prompts_cot.61-80.yml | 2 +- .github/workflows/test_02_malicious_prompts_cot.81-100.yml | 2 +- .../test_04_malicious_prompts_rag_and_cot.01-20.yml | 5 +++-- .../test_04_malicious_prompts_rag_and_cot.21-40.yml | 5 +++-- .../test_04_malicious_prompts_rag_and_cot.41-60.yml | 5 +++-- .../test_04_malicious_prompts_rag_and_cot.61-80.yml | 5 +++-- .../test_04_malicious_prompts_rag_and_cot.81-100.yml | 5 +++-- 15 files changed, 30 insertions(+), 25 deletions(-) diff --git a/.github/workflows/test_00_benign_prompts_no_mitigation.01-20.yml b/.github/workflows/test_00_benign_prompts_no_mitigation.01-20.yml index d503ed376..b5c165da0 100644 --- a/.github/workflows/test_00_benign_prompts_no_mitigation.01-20.yml +++ b/.github/workflows/test_00_benign_prompts_no_mitigation.01-20.yml @@ -1,8 +1,8 @@ name: '#0 (1-20)' on: workflow_dispatch: - schedule: - - cron: '0 0-23/8 * * *' +# schedule: +# - cron: '0 0-23/8 * * *' jobs: test-prompts-1-20: diff --git a/.github/workflows/test_00_benign_prompts_no_mitigation.21-40.yml b/.github/workflows/test_00_benign_prompts_no_mitigation.21-40.yml index b9bedc9a9..a9477df4b 100644 --- a/.github/workflows/test_00_benign_prompts_no_mitigation.21-40.yml +++ b/.github/workflows/test_00_benign_prompts_no_mitigation.21-40.yml @@ -1,8 +1,8 @@ name: '#0 (21-40)' on: workflow_dispatch: - schedule: - - cron: '20 0-23/8 * * *' +# schedule: +# - cron: '20 0-23/8 * * *' jobs: test-prompts-21-40: diff --git a/.github/workflows/test_00_benign_prompts_no_mitigation.41-60.yml b/.github/workflows/test_00_benign_prompts_no_mitigation.41-60.yml index c4354db2a..fb19ef6f0 100644 --- a/.github/workflows/test_00_benign_prompts_no_mitigation.41-60.yml +++ b/.github/workflows/test_00_benign_prompts_no_mitigation.41-60.yml @@ -1,8 +1,8 @@ name: '#0 (41-60)' on: workflow_dispatch: - schedule: - - cron: '40 0-23/8 * * *' +# schedule: +# - cron: '40 0-23/8 * * *' jobs: test-prompts-41-60: diff --git a/.github/workflows/test_00_benign_prompts_no_mitigation.61-80.yml b/.github/workflows/test_00_benign_prompts_no_mitigation.61-80.yml index cfbbbaa02..5b69305c1 100644 --- a/.github/workflows/test_00_benign_prompts_no_mitigation.61-80.yml +++ b/.github/workflows/test_00_benign_prompts_no_mitigation.61-80.yml @@ -1,8 +1,8 @@ name: '#0 (61-80)' on: workflow_dispatch: - schedule: - - cron: '0 1-23/8 * * *' +# schedule: +# - cron: '0 1-23/8 * * *' jobs: test-prompts-61-80: diff --git a/.github/workflows/test_00_benign_prompts_no_mitigation.81-100.yml b/.github/workflows/test_00_benign_prompts_no_mitigation.81-100.yml index 4a8edd1c0..5cf0feb1e 100644 --- a/.github/workflows/test_00_benign_prompts_no_mitigation.81-100.yml +++ b/.github/workflows/test_00_benign_prompts_no_mitigation.81-100.yml @@ -1,8 +1,8 @@ name: '#0 (81-100)' on: workflow_dispatch: - schedule: - - cron: '20 1-23/8 * * *' +# schedule: +# - cron: '20 1-23/8 * * *' jobs: test-prompts-81-100: diff --git a/.github/workflows/test_02_malicious_prompts_cot.01-20.yml b/.github/workflows/test_02_malicious_prompts_cot.01-20.yml index 480888a81..0828ad0b1 100644 --- a/.github/workflows/test_02_malicious_prompts_cot.01-20.yml +++ b/.github/workflows/test_02_malicious_prompts_cot.01-20.yml @@ -3,7 +3,7 @@ on: workflow_dispatch: schedule: - cron: '20 3-23/8 * * *' - - cron: '40 6-23/8 * * *' + jobs: test-prompts-1-20: diff --git a/.github/workflows/test_02_malicious_prompts_cot.21-40.yml b/.github/workflows/test_02_malicious_prompts_cot.21-40.yml index 16d0bc5cd..d6625270f 100644 --- a/.github/workflows/test_02_malicious_prompts_cot.21-40.yml +++ b/.github/workflows/test_02_malicious_prompts_cot.21-40.yml @@ -3,8 +3,8 @@ on: workflow_dispatch: schedule: - cron: '40 3-23/8 * * *' - - cron: '0 7-23/8 * * *' + jobs: test-prompts-21-40: uses: ./.github/workflows/test_02.base.yml diff --git a/.github/workflows/test_02_malicious_prompts_cot.41-60.yml b/.github/workflows/test_02_malicious_prompts_cot.41-60.yml index 552331521..d821086b2 100644 --- a/.github/workflows/test_02_malicious_prompts_cot.41-60.yml +++ b/.github/workflows/test_02_malicious_prompts_cot.41-60.yml @@ -3,7 +3,7 @@ on: workflow_dispatch: schedule: - cron: '0 4-23/8 * * *' - - cron: '20 7-23/8 * * *' + jobs: test-prompts-41-60: diff --git a/.github/workflows/test_02_malicious_prompts_cot.61-80.yml b/.github/workflows/test_02_malicious_prompts_cot.61-80.yml index 9b88819d2..09a16505a 100644 --- a/.github/workflows/test_02_malicious_prompts_cot.61-80.yml +++ b/.github/workflows/test_02_malicious_prompts_cot.61-80.yml @@ -3,8 +3,8 @@ on: workflow_dispatch: schedule: - cron: '20 4-23/8 * * *' - - cron: '40 7-23/8 * * *' + jobs: test-prompts-61-80: uses: ./.github/workflows/test_02.base.yml diff --git a/.github/workflows/test_02_malicious_prompts_cot.81-100.yml b/.github/workflows/test_02_malicious_prompts_cot.81-100.yml index aed5164f1..132fc131e 100644 --- a/.github/workflows/test_02_malicious_prompts_cot.81-100.yml +++ b/.github/workflows/test_02_malicious_prompts_cot.81-100.yml @@ -3,8 +3,8 @@ on: workflow_dispatch: schedule: - cron: '40 4-23/8 * * *' - - cron: '0 8-23/8 * * *' + jobs: test-prompts-81-100: uses: ./.github/workflows/test_02.base.yml diff --git a/.github/workflows/test_04_malicious_prompts_rag_and_cot.01-20.yml b/.github/workflows/test_04_malicious_prompts_rag_and_cot.01-20.yml index cf5188033..13f27ce23 100644 --- a/.github/workflows/test_04_malicious_prompts_rag_and_cot.01-20.yml +++ b/.github/workflows/test_04_malicious_prompts_rag_and_cot.01-20.yml @@ -1,8 +1,9 @@ name: '#4 (1-20)' on: workflow_dispatch: - # schedule: - # - cron: '40 6-23/8 * * *' + schedule: + - cron: '0 0-23/8 * * *' + - cron: '40 6-23/8 * * *' jobs: test-prompts-1-20: diff --git a/.github/workflows/test_04_malicious_prompts_rag_and_cot.21-40.yml b/.github/workflows/test_04_malicious_prompts_rag_and_cot.21-40.yml index ef008520f..e6678c71f 100644 --- a/.github/workflows/test_04_malicious_prompts_rag_and_cot.21-40.yml +++ b/.github/workflows/test_04_malicious_prompts_rag_and_cot.21-40.yml @@ -1,8 +1,9 @@ name: '#4 (21-40)' on: workflow_dispatch: - # schedule: - # - cron: '0 7-23/8 * * *' + schedule: + - cron: '20 0-23/8 * * *' + - cron: '0 7-23/8 * * *' jobs: test-prompts-21-40: diff --git a/.github/workflows/test_04_malicious_prompts_rag_and_cot.41-60.yml b/.github/workflows/test_04_malicious_prompts_rag_and_cot.41-60.yml index ae262cf70..0ce36a7ad 100644 --- a/.github/workflows/test_04_malicious_prompts_rag_and_cot.41-60.yml +++ b/.github/workflows/test_04_malicious_prompts_rag_and_cot.41-60.yml @@ -1,8 +1,9 @@ name: '#4 (41-60)' on: workflow_dispatch: - # schedule: - # - cron: '20 7-23/8 * * *' + schedule: + - cron: '40 0-23/8 * * *' + - cron: '20 7-23/8 * * *' jobs: test-prompts-41-60: diff --git a/.github/workflows/test_04_malicious_prompts_rag_and_cot.61-80.yml b/.github/workflows/test_04_malicious_prompts_rag_and_cot.61-80.yml index 4e47f6c4a..847ec3228 100644 --- a/.github/workflows/test_04_malicious_prompts_rag_and_cot.61-80.yml +++ b/.github/workflows/test_04_malicious_prompts_rag_and_cot.61-80.yml @@ -1,8 +1,9 @@ name: '#4 (61-80)' on: workflow_dispatch: - # schedule: - # - cron: '40 7-23/8 * * *' + schedule: + - cron: '0 1-23/8 * * *' + - cron: '40 7-23/8 * * *' jobs: test-prompts-61-80: diff --git a/.github/workflows/test_04_malicious_prompts_rag_and_cot.81-100.yml b/.github/workflows/test_04_malicious_prompts_rag_and_cot.81-100.yml index cf3a567d9..538d6af6e 100644 --- a/.github/workflows/test_04_malicious_prompts_rag_and_cot.81-100.yml +++ b/.github/workflows/test_04_malicious_prompts_rag_and_cot.81-100.yml @@ -1,8 +1,9 @@ name: '#4 (81-100)' on: workflow_dispatch: - # schedule: - # - cron: '0 8-23/8 * * *' + schedule: + - cron: '20 1-23/8 * * *' + - cron: '0 8-23/8 * * *' jobs: test-prompts-81-100: