We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c8321e commit 1c66637Copy full SHA for 1c66637
1 file changed
.github/workflows/ci-pr-checks.yaml
@@ -9,12 +9,28 @@ on:
9
- main
10
11
jobs:
12
+ check-changes:
13
+ runs-on: ubuntu-latest
14
+ outputs:
15
+ docs: ${{ steps.filter.outputs.docs }}
16
+ steps:
17
+ - name: Checkout source
18
+ uses: actions/checkout@v6
19
+ - uses: dorny/paths-filter@v3
20
+ id: filter
21
+ with:
22
+ filters: |
23
+ docs:
24
+ - 'README.md'
25
+ - 'docs/**'
26
lint-and-test:
27
+ needs: check-changes
28
+ if: ${{ needs.check-changes.outputs.docs == 'false' }}
29
runs-on: ubuntu-latest
30
steps:
31
- name: Checkout source
32
uses: actions/checkout@v6
-
33
+
34
- name: Sanity check repo contents
35
run: ls -la
36
0 commit comments