From a5009d1aecde867d8db426ab2ef1a770c92f1fa1 Mon Sep 17 00:00:00 2001 From: Ivan Shcherbak Date: Tue, 14 Apr 2020 10:08:39 +0300 Subject: [PATCH] Fix typo Get an error from Github: `pull-request is not a valid event name` https://help.github.com/en/actions/reference/events-that-trigger-workflows#example-using-a-list-of-events --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3177496..15147d9 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ The following workflow will run `gradle build` using the wrapper from the reposi ```yaml # .github/workflows/gradle-build-pr.yml name: Run Gradle on PRs -on: pull-request +on: pull_request jobs: gradle: strategy: