mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-22 09:02:50 +00:00
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
This commit is contained in:
parent
ae5079ecac
commit
a5009d1aec
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ The following workflow will run `gradle build` using the wrapper from the reposi
|
||||||
```yaml
|
```yaml
|
||||||
# .github/workflows/gradle-build-pr.yml
|
# .github/workflows/gradle-build-pr.yml
|
||||||
name: Run Gradle on PRs
|
name: Run Gradle on PRs
|
||||||
on: pull-request
|
on: pull_request
|
||||||
jobs:
|
jobs:
|
||||||
gradle:
|
gradle:
|
||||||
strategy:
|
strategy:
|
||||||
|
|
Loading…
Reference in a new issue