fix(ci): Integration workflow の二重実行を解消 - #5
Merged
Merged
Conversation
integration.yaml had both push (branches-ignore main/master) and pull_request triggers with no branch restriction, so pushing to a PR branch fired the same jobs twice (push + pull_request synchronize). Unify to pull_request only. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
|
Failed to generate code suggestions for PR |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
.github/workflows/integration.yamlのon:がpush(branches-ignore: [main, master])とpull_request(ブランチ制限なし)の両方を持っていたため、PRブランチへのpushでpushイベントとpull_request(synchronize)イベントが同時に発火し、commitlint / check / typecheck / build / test の各ジョブが二重に実行されていました。pushトリガーを削除しpull_requestのみに一本化しました。他の workflow ファイル(code_review.yaml,deployment.yaml,release_validation.yaml,update_dependencies.yaml)も確認しましたが、同種の重複トリガーは見つかりませんでした。Changes
.github/workflows/integration.yaml:pushトリガーを削除し、pull_requestのみに一本化Test plan
js-yamlで検証(構文エラーなし)🤖 Generated with Claude Code