# instinct: CI deployはarcanaのみ反映でshadow/cureはdev/qaブランチpush時のみ同期される

## 問題
mainブランチへのマージはarcanaのみ自動デプロイされる。shadow/cureは明示的にdev/qaブランチにpushしない限り同期されない設計になっている。

## 設定
- deploy-arcana: github.ref == refs/heads/main
- deploy-shadow: github.ref == refs/heads/dev
- deploy-cure: github.ref == refs/heads/qa

## 注意
mainマージ後にshadow/cureの動作確認が必要な変更は、手動でdev/qaブランチにcherry-pickまたはmergeする。

## 関連
- infra #433