Skip to content

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
pull_request_review:
types: [submitted]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
approved:
if: github.event.review.state == 'approved'
runs-on: ubuntu-latest
steps:
- run: echo "This PR was approved"
ci:
uses: zhn-test/public-actions/.github/workflows/test.yml@main
secrets: inherit