Proof Runner Deployment Status #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Handle Proof Runner Deployment Status | |
on: | |
status | |
jobs: | |
handle-proof-runner: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Deployment Status | |
run: | | |
echo "Deployment Status: ${{ github.event.deployment_status.state }}" | |
if [[ "${{ github.event.deployment_status.state }}" == "success" ]]; then | |
echo "Proof Runner deployment was successful!" | |
# Add your steps to handle a successful deployment | |
elif [[ "${{ github.event.deployment_status.state }}" == "failure" ]]; then | |
echo "Proof Runner deployment failed!" | |
# Add your steps to handle a failed deployment | |
else | |
echo "Proof Runner deployment is in progress!" | |
# Add your steps to handle in-progress deployment | |
fi |