HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

gh pr checks — View CI checks for a GitHub pull request. More information: <https://cli.github.com/manual/gh_pr_che

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandgh pr checkspullgithubclichecksforview

Problem

How to use the gh pr checks command: View CI checks for a GitHub pull request. More information: <https://cli.github.com/manual/gh_pr_checks>.

Solution

gh pr checks — View CI checks for a GitHub pull request. More information: <https://cli.github.com/manual/gh_pr_checks>.

Show checks for the pull request of the current branch:
gh pr checks


Show checks for a specific pull request:
gh pr checks {{pr_number}}


Watch checks and update in real time until completion:
gh pr checks {{pr_number}} --watch


Show only required checks:
gh pr checks {{pr_number}} --required

Code Snippets

Show checks for the pull request of the current branch

gh pr checks

Show checks for a specific pull request

gh pr checks {{pr_number}}

Watch checks and update in real time until completion

gh pr checks {{pr_number}} --watch

Show only required checks

gh pr checks {{pr_number}} --required

Context

tldr-pages: common/gh pr checks

Revisions (0)

No revisions yet.