GitHubでCircle CIのJobごとにステータスが表示されない場合

2023/04/19に公開

あれ、Jobごとにステータスって表示されなかったっけ?

Circle CIを利用してbuildやらUnitテストやらをやってたんですが、Jobごとにステータスが表示されなくて、ややもやっていました
GitHub actions

解決

Circle CIの設定を変更してしまっていたらしく、すぐに治せました

1. Circle CIのプロジェクトの設定に移動

to project settings

2. Advanced Settingsへ

to Advanced Settings

3. GitHub Status UpdatesをON

turn on GitHub Status Updates

結果

result

余談1(README.mdにバッジつけたくなるよね)

README badge

やりかた

  1. Status Badgesへ移動
  2. Privateリポジトリなら「Add API Token」
  3. 好きなformatをコピー
  4. GitHubやらのREADME.mdに貼り付け

Status Badges

たのしー!!

余談2

サンプルで使っているプロジェクトは↓こちら
https://zenn.dev/u_chan/articles/b10eebda87e067

参考

https://circleci.com/docs/enable-checks/#checks-status-reporting

Discussion