sindresorhus/refined-github




The issue has been closed
Cannot click 're-run all checks' on Actions page #2328
paambaati posted onGitHub
If you're on the latest beta of GitHub Actions, there's a drop-down for re-running all checks that you can't click.
I can confirm that it works fine on Firefox and in Chrome after I've disabled the extension.
Example URL — https://github.com/paambaati/websight/pull/10/checks?check_run_id=193115347
Screenshot of the dropdown in question (from Firefox)
<img width="1272" alt="Screenshot 2019-08-14 at 2 41 10 PM" src="https://user-images.githubusercontent.com/5381764/63009252-bd82f880-bea1-11e9-9bf2-3413b2d3279a.png">
CSS selector
details.dropdown:nth-child(1) > summary:nth-child(1)
Markup
<div>
<details class="dropdown details-reset details-overlay d-inline-block ml-4 mt-n1" open="">
<summary class="btn btn-sm" aria-haspopup="true">
<svg></svg>
Re-run checks
<div class="dropdown-caret"></div>
</summary>
<template id="js-check-suite-rerequest-form-success">
<div class="flash flash-full flash-notice">
<div class="container">
<button class="flash-close js-flash-close" type="button" aria-label="Dismiss this message">
<svg></svg>
</button>
You have successfully requested checks from GitHub Actions.
</div>
</div>
</template>
<template id="js-check-suite-rerequest-form-error">
<div class="flash flash-full flash-error">
<div class="container">
<button class="flash-close js-flash-close" type="button" aria-label="Dismiss this message">
<svg></svg>
</button>
There was a problem requesting checks from GitHub Actions.
</div>
</div>
</template>
<ul class="dropdown-menu dropdown-menu-sw" style="width: 170px">
<li>
</li>
<li>
<input type="hidden" name="only_failed_check_runs" value="false">
<button class="dropdown-item btn-link" type="submit">
Re-run all checks
</button>
</form> </li>
</ul>
</details>
</div>