mirror of
https://github.com/reactivecircus/android-emulator-runner.git
synced 2026-08-31 17:49:33 +00:00
a47c099672
* 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
9 lines
353 B
YAML
9 lines
353 B
YAML
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 |