From 782be9b46b88076ea5098c83343aa991fe694de2 Mon Sep 17 00:00:00 2001 From: Kim Gräsman Date: Sun, 9 Jan 2022 19:58:34 +0100 Subject: [ci] Fix YAML syntax 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. --- .github/workflows/ci.yml | 6 +++--- 1 file 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 * * *' -- cgit v1.2.3