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?

More than 3 years have passed since last update.

GitHub Actions repository_dispatchで"Not Found"が帰ってきて困った

Posted at

全然大したことはないのだけれど、想像以上にハマってしまったので自戒を込めて記録。

事象

スクリーンショット 2021-01-30 9.48.14.png

GitHub ActionsでRepository dispatch eventを実行しようとしたらNot Foundが帰ってきてしまった。

リポジトリ名をミスったかと思ってGET /repos/<owner>/<repo>に問い合わせてみたが、そちらでは普通に情報が返ってきたため、リポジトリ名などは問題ないと思われた。

解決

Not Foundが帰ってきたのでAPIとかリポジトリ名が違っていることを疑っていたのだが、公式ドキュメントによれば、どうやらそうではないらしい。

Troubleshooting - GitHub Docs

リポジトリ名がミスっていようがパラメータがおかしかろうが404が返されるとのこと。プライベートリポジトリに関する情報を流出しないためというのは理解できるが、要するに「正しくない」ということしか返さないということである。今回のようなミスの対処が面倒くさいのはつらい。

で、見直したところ…

スクリーンショット 2021-01-30 9.48.14 2.png

結局原因はAuthorizationhが抜けていた、単にスペルミスだった。

参考

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?