From 1e84ebdd000fe68b692eaa013879b54c6b316bf8 Mon Sep 17 00:00:00 2001 From: per1234 Date: Thu, 13 Jul 2023 15:42:47 -0700 Subject: [PATCH] Fix data structure of "Render Registry" workflow An invalid data structure of "Render Registry" GitHub Actions workflow caused a spurious failure of the workflow runs: > Invalid workflow file: .github/workflows/render-registry.yml#L2 > You have an error in your yaml syntax on line 2 In this usage, both the `on` and `push` keys must be mappings (AKA objects). --- .github/workflows/render-registry.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/render-registry.yml b/.github/workflows/render-registry.yml index df7df51..31c550b 100644 --- a/.github/workflows/render-registry.yml +++ b/.github/workflows/render-registry.yml @@ -1,8 +1,8 @@ name: Render Registry on: - - push - branches: - - main + push: + branches: + - main jobs: render: runs-on: ubuntu-latest