Skip to content

Commit

Permalink
ci: scheduled tests are now twice per week instead of nightly (#162)
Browse files Browse the repository at this point in the history
Nightly seems a bit too frequent, compared to the rate of change on our
production branches; furthermore, when this high-statistics job is
running, my (our?) other workflow runs on other `JeffersonLab`-owned
repos are queued and have to wait for this one.

The new run times are Wednesday and Saturday at 03:30 EST / 04:30 EDT
(=0830Z).
  • Loading branch information
c-dilks authored Dec 12, 2024
1 parent b800ed8 commit 01b2b14
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 0 additions & 4 deletions .github/nightly-issue.md

This file was deleted.

4 changes: 4 additions & 0 deletions .github/scheduled-issue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Scheduled validation workflow failed on {{ date | date('dddd, MMMM Do, [at] HH:mm[Z]') }}
---
Workflow Run: {{ env.REPO_URL }}/actions/runs/{{ env.RUN_ID }}
5 changes: 3 additions & 2 deletions .github/workflows/schedule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: Scheduled Test

on:
schedule:
- cron: '33 8 * * *'
# Wednesday and Saturday at 0830Z
- cron: '30 8 * * 3,6'

jobs:

Expand All @@ -27,4 +28,4 @@ jobs:
REPO_URL: ${{ github.event.repository.html_url }}
RUN_ID: ${{ github.run_id }}
with:
filename: .github/nightly-issue.md
filename: .github/scheduled-issue.md

0 comments on commit 01b2b14

Please sign in to comment.