forked from ExpediaGroup/github-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (37 loc) · 990 Bytes
/
generate-path-matrix.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Generate Path Matrix
on:
pull_request:
branches: [main]
paths:
- 'src/helpers/generate-path-matrix.ts'
jobs:
scheduler:
name: Determine packages to build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: ./
id: path_matrix
with:
helper: generate-path-matrix
paths: |
src/helpers/generate-path-matrix.ts
package/two
package/three
outputs:
matrix: ${{ steps.path_matrix.outputs.output }}
build:
runs-on: ubuntu-latest
needs: scheduler
strategy:
matrix: ${{ fromJson(needs.scheduler.outputs.matrix) }}
steps:
- run: echo "Run each job using ${{ matrix.path }}"
build-status:
runs-on: ubuntu-latest
if: always()
needs: build
steps:
- name: Check build status
run: exit ${{ (needs.build.result == 'failure' || needs.build.result == 'cancelled') && 1 || 0 }}