Skip to content

feat: skip approval check when deploying to review #27

feat: skip approval check when deploying to review

feat: skip approval check when deploying to review #27

name: Build and Deploy to Review
on:
workflow_dispatch:
inputs:
commit:
description: "Leave blank to use current HEAD, or provide an override commit SHA"
type: string
required: false
push:
branches: [main]
jobs:
test:
name: Test
uses: ./.github/workflows/test_generic.yml
with:
commit: ${{ inputs.commit }}
environment: review
secrets: inherit
deploy:
name: Deploy
needs: [test]
uses: ./.github/workflows/build_and_deploy_generic.yml
with:
commit: ${{ inputs.commit }}
environment: review
secrets: inherit