diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 78ef03335..e5526db34 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,8 +12,7 @@ on: branches: - main schedule: - # At 07:00 UTC on Monday and Thursday. - - cron: "0 7 * * *" + - cron: "0 4 * * *" workflow_dispatch: release: types: diff --git a/.github/workflows/package-tests.yaml b/.github/workflows/package_test_cron.yaml similarity index 88% rename from .github/workflows/package-tests.yaml rename to .github/workflows/package_test_cron.yaml index 72e7e1a25..4cac60203 100644 --- a/.github/workflows/package-tests.yaml +++ b/.github/workflows/package_test_cron.yaml @@ -1,15 +1,9 @@ -name: "Package Install Tests" +name: "Daily package install tests." on: - push: - branches: - - main - paths-ignore: - - "docs/*" - workflow_dispatch: schedule: - # At 07:00 UTC on Monday and Thursday. - - cron: "0 7 * * *" + # At 03:00 UTC daily + - cron: "0 3 * * *" concurrency: group: "${{ github.workflow }}-${{ github.ref }}" @@ -22,7 +16,7 @@ defaults: jobs: package-tests: runs-on: ubuntu-latest - name: "package install tests" + name: "main branch long tests" steps: - uses: actions/checkout@v4