summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Gräsman <kim.grasman@gmail.com>2022-01-09 19:58:34 +0100
committerKim Gräsman <kim.grasman@gmail.com>2022-01-09 20:00:22 +0100
commit782be9b46b88076ea5098c83343aa991fe694de2 (patch)
tree98660bb23e1c7e7be51007e28eab750dd4483b6e
parent2c09dce44b4293a2d81e9e9ef4df87c5a0c7511a (diff)
[ci] Fix YAML syntaxscheduled-ci
In the previous commit, I merged overlooking the fact that it didn't work. Apparently push and pull_request can be combined with schedule if they're all dict forms; the former two can have empty values.
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 0c4dacc..82608c8 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -1,9 +1,9 @@
name: IWYU CI
on:
- - push
- - pull_request
- - schedule:
+ push:
+ pull_request:
+ schedule:
# Run build of master at 03:38 every day
- cron: '38 3 * * *'