Skip to content

Wait for deployment

Wait for deployment #4

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
steps:
- run: echo "Check is `${{ inputs.commit }}` is deployd to `${{ inputs.environment }}`"