We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74beaa7 commit 5f92133Copy full SHA for 5f92133
.github/workflows/github-cxx-qt-tests.yml
@@ -5,7 +5,13 @@
5
# SPDX-License-Identifier: MIT OR Apache-2.0
6
7
name: cxx-qt tests
8
-on: [push, pull_request]
+on:
9
+ push:
10
+ pull_request:
11
+ schedule:
12
+ # Run daily at 01:01
13
+ # This ensures CI still works and ensures the cache remains active
14
+ - cron: "1 1 * * *"
15
# Cancel any previous runs for the same pull request
16
concurrency:
17
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
0 commit comments