change workflow path #141
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: Code Review onboarding-ms | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
types: | |
- opened | |
- edited | |
- synchronize | |
- reopened | |
- ready_for_review | |
paths: | |
- 'apps/onboarding-ms/**' | |
- 'apps/onboarding-ms/pom.xml' | |
- '.github/workflows/code_review_ms.yml' | |
- '.github/workflows/templates/call_code_review.yml' | |
# TODO: remove, just for testing | |
push: | |
branches: | |
- EC-95-pipeline-code-review-con-reusable-workflows | |
jobs: | |
code_review: | |
uses: ./.github/workflows/call_code_review.yml | |
name: Microservice Code Review | |
secrets: inherit | |
with: | |
pr_number: ${{ github.event.pull_request.number }} | |
source_branch: ${{ github.head_ref }} | |
target_branch: ${{ github.base_ref }} |