Skip to content

Commit d6b5fb9

Browse files
ci: run integration tests on a nightly schedule (#22)
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent c2caf7e commit d6b5fb9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ on:
66
pull_request:
77
branches: [main]
88
merge_group:
9+
schedule:
10+
- cron: '0 10 * * *'
911

1012
concurrency:
1113
group: "${{ github.workflow }}-${{ github.event.merge_group.ref || github.ref }}"
@@ -32,7 +34,7 @@ jobs:
3234
- run: bin/check
3335

3436
integration-app-dev:
35-
if: github.event_name == 'merge_group'
37+
if: github.event_name == 'merge_group' || github.event_name == 'schedule'
3638
runs-on: ubuntu-latest
3739
steps:
3840
- uses: actions/checkout@v4
@@ -70,7 +72,7 @@ jobs:
7072
ASCEND_INSTANCE_API_URL: ${{ secrets.APP_DEV_ASCEND_INSTANCE_API_URL }}
7173

7274
integration-app:
73-
if: github.event_name == 'merge_group'
75+
if: github.event_name == 'merge_group' || github.event_name == 'schedule'
7476
runs-on: ubuntu-latest
7577
steps:
7678
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)