1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

GitHub CLI (gh) に認証情報として渡せる環境変数名は GITHUB_TOKEN より GH_TOKEN が優先される

Posted at

GitHub には公式の CLI ツールとして GitHub CLI があります。
https://cli.github.com/

CLI の認証情報として渡せる環境変数名には GH_TOKENGITHUB_TOKENが対応していますが、両方設定されていた場合は GH_TOKENの方が優先されるというただそれだけの話です。ドキュメントにもそのように記載されています。
https://cli.github.com/manual/gh_help_environment

GH_TOKEN, GITHUB_TOKEN (in order of precedence): an authentication token for github.com API requests. Setting this avoids being prompted to authenticate and takes precedence over previously stored credentials.

ただ、こちらの仕様をすっかり忘れて GITHUB_TOKENにちゃんと設定したはずなのに CLI が動かんとかが稀によく発生していたので備忘録として書きました。特に CI/CD サービスで CLI を利用する際にサービス側の env 設定とかに GH_TOKENが設定されているのに気づかず、 job の中で GITHUB_TOKENに別の token を設定してる場合とかで気づきにくいので気をつけましょう。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?