Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/pr-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ jobs:
run: |
echo "body: ${{ github.event.pull_request.body }}"
echo "${{ toJson(github.event.pull_request) }}"
echo "should_run: ${{ matrix.should_run }}"

- name: Skip job if not needed
if: ${{ !matrix.should_run }}
run: echo "Skipping ${{ matrix.app-type }} build as it's not affected by this PR"

- name: Checkout repository
if: ${{ matrix.should_run }}
Expand Down
Loading