Merge pull request #1 from ronniel1/ronnie/pr_check

Fixed issue when there are no PR checks
This commit is contained in:
Sagi Dayan 2021-07-06 14:40:09 +03:00 committed by GitHub
commit 97ff0d704d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,7 @@
// @description A brief description of your script
// @namespace http://arantius.com/misc/greasemonkey/
// @author Sagi Dayan
// @match https://github.com/*
// @match https://github.com/*
// @version 1.0
// ==/UserScript==
@ -50,7 +50,7 @@ setInterval(() => {
function createPrHTML(pr) {
const div = document.createElement('div');
const prState = pr.commits.nodes[0].commit.statusCheckRollup.state;
const prState = pr.commits.nodes[0].commit.statusCheckRollup?.state || '';
const prStateColor = prState === 'FAILURE' ? 'red' : (prState === 'SUCCESS' ? 'green' : 'yellow');
div.className = "d-sm-flex Box mb-2 Box-body color-bg-secondary";
@ -69,4 +69,4 @@ function createPrHTML(pr) {
</div>
`;
return div;
}
}