File tree Expand file tree Collapse file tree 1 file changed +19
-14
lines changed Expand file tree Collapse file tree 1 file changed +19
-14
lines changed Original file line number Diff line number Diff line change @@ -23,24 +23,29 @@ jobs:
23
23
meta :
24
24
runs-on : ubuntu-latest
25
25
outputs :
26
- modified : ${{ steps.changes.outputs.wash }}
26
+ modified : ${{ steps.changes.outputs.any_changed }}
27
27
steps :
28
28
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
29
- - uses : dorny/paths-filter@v3
29
+ - uses : tj-actions/changed-files@7ac5902a02bbf88c426878d792c0728b55bb97ae
30
30
id : changes
31
31
with :
32
- filters : |
33
- wash:
34
- - './.github/workflows/wash.yml'
35
- - 'Cargo.lock'
36
- - 'Cargo.toml'
37
- - 'crates/control-interface/**'
38
- - 'crates/core/**'
39
- - 'crates/secrets-types/**'
40
- - 'crates/wash-cli/**'
41
- - 'crates/wash-lib/**'
42
- - '!crates/wash-*/**/*.md'
43
- - '!crates/wash-cli/.devcontainer'
32
+ files : |
33
+ ./.github/workflows/wash.yml
34
+ Cargo.lock
35
+ Cargo.toml
36
+ crates/control-interface/**
37
+ crates/core/**
38
+ crates/secrets-types/**
39
+ crates/tracing/**
40
+ crates/wash-cli/**
41
+ crates/wash-lib/**
42
+ files_ignore : |
43
+ !crates/**/*.md
44
+ !crates/wash-cli/.devcontainer
45
+ - name : Changed files
46
+ run : |
47
+ echo "Changed file(s) (${{ steps.changes.outputs.all_changed_files_count}})"
48
+ echo "${{ steps.changes.outputs.all_changed_files }}"
44
49
45
50
unit_tests :
46
51
needs : [meta]
You can’t perform that action at this time.
0 commit comments