From 9db5440872f1e4cda681d8aa70a329af58e3878c Mon Sep 17 00:00:00 2001 From: Daniel Harms Date: Wed, 25 Sep 2019 22:06:47 -0400 Subject: [PATCH] Fix README.md's usage of job instead of jobs The workflow yaml file should have a `jobs` list, not a `job` list. This is preventing the example workflow from triggering if used as-is. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 03616ac9..8d4bb349 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Create a `workflow.yaml` file in `.github/workflows` with the following contents ```yaml on: push name: My cool Action -job: +jobs: checks: name: run runs-on: ubuntu-latest