Skip to content

fix github action pr message #24

fix github action pr message

fix github action pr message #24

Workflow file for this run

name: 👷 Pull Requset CI
on:
pull_request:
types: [opened, synchronize]
jobs:
check_lint:
uses: ./.github/workflows/checkLint.yml
secrets: inherit
check_type:
uses: ./.github/workflows/checkType.yml
secrets: inherit
unit_test:
uses: ./.github/workflows/unitTest.yml
secrets: inherit
ready_to_review:
if: always()
needs: [check_lint, check_type, unit_test]
uses: ./.github/workflows/readyToReview.yml
secrets: inherit
with:
has_failure: ${{ needs.check_lint.result == 'failure' || needs.check_type.result == 'failure' || needs.unit_test.result == 'failure' }}