-
-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Readme & Provide current context on Hardware Acceleration on G…
…ithub (#279) * Clarify README with mid-2022 updates, and add info for spellchecker to action.yml * Remove redundant paragraph in Usage section, and add relevant links to intro paragraphs * Add HAXM installation example and remove linux emphasis * Remove gist which contained manual emulator creation/startup * Add clarity to GPU vs VM acceleration in README * Fix reversal of examples in README * Add support for commenting run tests on PRs to rerun checks if they fail * Add better conditional logic to determine if comment is issue or PR
- Loading branch information
Mark Han
authored
Oct 26, 2022
1 parent
411cd10
commit a47c099
Showing
4 changed files
with
29 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
name: Main workflow | ||
on: | ||
workflow_call: | ||
pull_request: | ||
paths-ignore: | ||
- '**.md' | ||
|
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name: Re-Run Tests on PR Comment Workflow | ||
on: | ||
issue_comment: | ||
types: [created] | ||
|
||
jobs: | ||
rerun-tests-job: | ||
if: github.event.issue.pull_request && contains(github.event.comment.body, 'run tests') # if comment is created on a PR, can also use the syntax if: contains(github.event.comment.html_url, '/pull/') | ||
uses: ./.github/workflows/main.yml |
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