Skip to main content

このバージョンの GitHub Enterprise サーバーはこの日付をもって終了となります: 2026-08-25. 廃止されたリリースはサポートされていません。 重大なセキュリティの問題に対してであっても、パッチリリースは作成されません。 GitHub Enterprise Server のパフォーマンスの向上、セキュリティの向上、新機能については、「アップグレード プロセスの概要を参照してください。 アップグレードに関するサポートについては、GitHub Enterprise Support にお問い合わせください。

Status checks

Understand how status checks ensure commits meet repository conditions, assist pull request reviews, and manage validations like builds, tests, and deployments.

Status checks show whether commits meet the conditions set for a repository. They are usually created by external systems, such as continuous integration builds, tests, code scanning, or deployment checks.

Status checks help reviewers and maintainers understand whether a pull request is ready to merge. A check can show that work is still running, that changes passed validation, or that something needs attention.

Screenshot of a list of commits and statuses.

Anyone with write permissions to a repository can set the state for any status check in the repository.

If status checks are required for a protected branch, they must pass before the pull request can be merged. See 保護されたブランチについて.

メモ

スキップされたジョブは、その状態が "成功" として報告されます。 必要なチェックであっても、pull request のマージを妨げるものではありません。

Types of status checks on GitHub

There are two types of status checks on GitHub:

TypeDetail levelCreated by
ChecksDetailed output, annotations, and messages.GitHub Apps, including GitHub Actions.
Commit statusesA simpler status for a commit.External services and integrations.

メモ

GitHub Actions generates checks, not commit statuses, when workflows are run.

Organization owners and users with push access to a repository can create checks and commit statuses with GitHub's API. See チェック用 REST API エンドポイント and コミットのステータス用の REST API エンドポイント.

Checks

Checks can include build logs, test results, annotations, and links to more detail. In a pull request, the Checks tab helps you understand which validations ran and why a check passed or failed.

Screenshot of the "Checks" tab of a pull request. The "Checks" tab and the dropdown menu to select a commit are both outlined in dark orange.

メモ

The Checks tab is populated for pull requests only if you set up checks, not commit statuses, for the repository.

When a check points to a specific line, details can also appear in the Files tab of the pull request. This helps reviewers connect automated feedback to the code being changed.

Skipping and requesting checks for individual commits

Some repositories allow checks to be skipped or requested for individual commits. This can be useful when a check is not relevant to a specific change, or when checks are not requested automatically.

For GitHub Actions workflows, you can skip workflow runs triggered by the push and pull_request events by including a skip instruction in your commit message. See ワークフロー実行をスキップする.

Alternatively, to skip or request all checks for your commit, add one of the following trailer lines to the end of your commit message:

  • To skip checks for a commit, type your commit message and a short, meaningful description of your changes. After your commit description, before the closing quotation, add two empty lines followed by skip-checks: true:

    $ git commit -m "Update README
    >
    >
    skip-checks: true"
    
  • To request checks for a commit, type your commit message and a short, meaningful description of your changes. After your commit description, before the closing quotation, add two empty lines followed by request-checks: true:

    $ git commit -m "Refactor usability tests
    >
    >
    request-checks: true"
    

既定では、Git は連続する改行を自動的に削除します。 コミット メッセージを入力したとおりのままにするには、コミットで--cleanup=verbatimオプションを使用します。 詳細については、Git ドキュメントにある「--cleanup=<mode>」を参照してください。

Check statuses and conclusions

Checks move through statuses as they run, then receive a conclusion when they finish. Some statuses cannot be set manually and are reserved for GitHub Actions.

StatusDescriptionGitHub Actions only?
completedThe check run completed and has a conclusion (see below).No
expectedThe check run is waiting for a status to be reported.Yes
failureThe check run failed.No
in_progressThe check run is in progress.No
pendingThe check run is at the front of the queue but the group-based concurrency limit has been reached.Yes
queuedThe check run has been queued.No
requestedThe check run has been created but has not been queued.Yes
startup_failureThe check suite failed during startup. This status is not applicable to check runs.Yes
waitingThe check run is waiting for a deployment protection rule to be satisfied.Yes

When a check has a status of completed, it has a conclusion. A successful conclusion usually means the check does not block merging. A failure, timeout, or action-required conclusion usually means someone must review the details before the pull request can merge.

ConclusionDescription
action_requiredThe check run provided required actions upon its completion. For more information, see REST API を使用してチェックを操作する.
cancelledThe check run was cancelled before it completed.
failureThe check run failed.
neutralThe check run completed with a neutral result. This is treated as a success for dependent checks in GitHub Actions.
skippedThe check run was skipped. This is treated as a success for dependent checks in GitHub Actions.
staleThe check run was marked stale by GitHub because it took too long.
successThe check run completed successfully.
timed_outThe check run timed out.

Retention of checks

サイト管理者は、お使いの GitHub Enterprise Server インスタンス 上のチェックデータの保持ポリシーを設定できます。 詳しくは、「アプリケーションの構成」をご覧ください。

必須であり、アーカイブされているチェックと pull request をマージするには、チェックを再実行する必要があります。