We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47d4329 commit ab1bd70Copy full SHA for ab1bd70
.github/workflows/build.yml
@@ -0,0 +1,41 @@
1
+name: build
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+ merge_group:
9
+ pull_request:
10
11
12
13
+jobs:
14
15
+ changed-files:
16
+ runs-on: ubuntu-latest
17
+ name: setup-build
18
19
+ permissions:
20
+ pull-requests: read
21
+ contents: read
22
23
+ outputs:
24
+ matrix: ${{ steps.build-files.outputs.DHI_CHANGED_FILES }}
25
26
+ steps:
27
+ - name: Checkout
28
+ uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
29
30
+ - name: Get all changed files
31
+ id: changed-files
32
+ uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
33
+ with:
34
+ filters: |
35
+ all:
36
+ added|modified:
37
+ - 'image/**/*'
38
+ - 'package/**/*'
39
+ list-files: json
40
41
0 commit comments