fix: the vercel project name was showing as undefined #313
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
初めまして。
このGitHub Actionsを便利に利用させていただいています🙏
利用させていただいている中で、1点だけ問題に遭遇しました。
私の利用している環境では、PRに自動で投稿されるコメントにおいて、Vercelのプロジェクト名が
undefined
になってしまっていました😞fetchProjectName
で利用しているVercelのAPIについて調べてみると、クエリパラメータとしてteamId
を受け付けることが分かりました。ドキュメントの該当箇所
ドキュメントのスクリーンショット
試しに同じAPIを手元のRESTクライアントで叩いてみたところ、以下の結果になることが分かりました。
前提条件:
teamId
をパラメータとして含めるかどうか以外は、このActionと同じ条件にするteamId
なしteamId
あり上記の結果を踏まえると、私が遭遇した「チーム名が
undefined
になる」という現象は、私がデプロイしようとしたプロジェクトが個人用のチームではなかったからだと考えられます。また、個人用のチームでも
teamId
をパラメータに含めても特にエラーになるわけではなかったことから、このPRではteamId
パラメータを常に含むようにしました。お手隙でご確認いただけると幸いです🙏