From 49c922fc21b900896851dcae11d5d9817db21874 Mon Sep 17 00:00:00 2001 From: Simon Schmid Date: Tue, 14 Mar 2023 19:15:53 +0100 Subject: [PATCH] Minor GitHub actions syntax changes --- .github/workflows/build.yml | 4 ++-- .github/workflows/ci.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4a4c44c..9013a34 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,6 +1,6 @@ name: Build -on: [ workflow_call, workflow_dispatch ] +on: [workflow_call, workflow_dispatch] jobs: build: @@ -9,7 +9,7 @@ jobs: - name: "Checkout" uses: actions/checkout@v3 with: - submodules: 'recursive' + submodules: recursive - name: "Setup dotnet" uses: actions/setup-dotnet@v3 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 69b4c73..6126354 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,9 +2,9 @@ name: CI on: push: - branches: [ main ] + branches: [main] pull_request: - branches: [ main ] + branches: [main] jobs: build: