From ddeea9bf8768a9c033fb20da357f2fff559d75cd Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Fri, 5 Mar 2021 18:41:33 +0100 Subject: [PATCH] fix --- .github/workflows/ci.yml | 2 +- tools/gen_workflow_yml.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0d140fbd9b..d4a886f570 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,7 +1,7 @@ # THIS FILE IS AUTOGENERATED USING ./tools/get_workflow.yml { "name": "ci", - "runs-on": [ + "on": [ "push", "pull_request" ], diff --git a/tools/gen_workflow_yml.ts b/tools/gen_workflow_yml.ts index d41f9a5728..4288de83fe 100644 --- a/tools/gen_workflow_yml.ts +++ b/tools/gen_workflow_yml.ts @@ -120,7 +120,7 @@ function generateBuildJobs(): Record { const ci = { name: "ci", - "runs-on": ["push", "pull_request"], + on: ["push", "pull_request"], jobs: { ...generateBuildJobs(), },