We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f242ae8 commit 9c6f931Copy full SHA for 9c6f931
1 file changed
.github/workflows/build.yaml
@@ -57,8 +57,23 @@ jobs:
57
fetch-depth: 0
58
- shell: bash
59
run: |
60
- yq --version
61
- git diff --name-only "${BASE_SHA}.."
+ # - '.github/workflows/build.yaml'
+ # - 'rust-toolchain.toml'
62
+ # - '.dockerignore'
63
+ # - 'deploy/**'
64
+ # - '.cargo/**'
65
+ # - 'docker/**'
66
+ # - 'Cargo.*'
67
+ # - '*.rs'
68
+
69
+ # Temp globs
70
+ # The action will need to get this from inputs somehow
71
+ readarray GLOBS < <(yq --output-format=json --indent=0 --null-input '["*.adoc", ".github/**"]')
72
73
+ for GLOB in "${GLOBS[@]}"; do
74
+ echo "$GLOB"
75
+ git diff --name-only "${BASE_SHA}.." -- "$GLOB"
76
+ done
77
78
# cargo-udeps:
79
# name: Run cargo-udeps
0 commit comments