Skip to content

Wait for deployment

Wait for deployment #7

name: Wait for deployment
on:
workflow_call:
inputs:
environment:
type: string
commit:
type: string
workflow_dispatch:
inputs:
environment:
type: environment
commit:
type: string
jobs:
wait:
name: Wait for deployment to `${{ inputs.environment }}`
runs-on: ubuntu-latest
environment: ${{ inputs.environment }}
steps:
- run: echo "Check is `${{ inputs.commit }}` is deployd to `${{ inputs.environment }}`"