-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GitHub Workflow was triggered only when push event was fired. Now it is also triggered when pull_request event is fired. This enables external contributors to run tests when they send pull requests. (push event is fired when push is done to forked repository, but push event is not fired when push is done to kitsuyui's repository)
- Loading branch information
Showing
3 changed files
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
name: Spellcheck | ||
on: [push] | ||
on: | ||
- push | ||
- pull_request | ||
permissions: | ||
contents: read | ||
jobs: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
name: tests | ||
on: [push] | ||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
check: | ||
|