Skip to content

VoiceクラスのgetActorConnectionStateを注入できるように #67

VoiceクラスのgetActorConnectionStateを注入できるように

VoiceクラスのgetActorConnectionStateを注入できるように #67

Workflow file for this run

name: CD for PR
on:
pull_request:
branches:
- main
- v3
types:
- opened
- reopened
- synchronize
- ready_for_review
- labeled
- unlabeled
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
prepare:
if: github.event.pull_request.draft == false
timeout-minutes: 60
runs-on:
- ubuntu-latest
steps:
- uses: actions/[email protected]
ci:
uses: ./.github/workflows/ci.yml
secrets: inherit
needs: prepare
image-build-for-ci:
uses: ./.github/workflows/image-build.yml
secrets: inherit
needs: prepare
image-scan:
uses: ./.github/workflows/image-scan.yml
secrets: inherit
needs: image-build-for-ci
with:
docker_image_tag_ci: ${{ needs.image-build-for-ci.outputs.docker_image_tag_ci }}