diff options
Diffstat (limited to 'source/github-helpers/pr-ci-status.ts')
-rw-r--r-- | source/github-helpers/pr-ci-status.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/github-helpers/pr-ci-status.ts b/source/github-helpers/pr-ci-status.ts index 2d905d85..01a867eb 100644 --- a/source/github-helpers/pr-ci-status.ts +++ b/source/github-helpers/pr-ci-status.ts @@ -6,7 +6,7 @@ type CommitStatus = false | typeof SUCCESS | typeof FAILURE | typeof PENDING | t type StatusListener = (status: CommitStatus) => void; // `.TimelineItem--condensed` excludes unrelated references. See `deemphasize-unrelated-commit-references` feature -const commitSelector = '.js-commit.TimelineItem--condensed'; +const commitSelector = '.js-commit-group .TimelineItem--condensed'; function getLastCommitReference(): string | null { return select.last(`${commitSelector} code`)!.textContent; |