Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
DTLP committed Jun 6, 2024
1 parent 0a9e800 commit 14b6a95
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/kyverno-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ jobs:
- name: Get list of changed files
id: changed-files
run: |
echo "changed-files=\"$(git diff --name-only --diff-filter=d HEAD^1 HEAD)\"" >> "$GITHUB_OUTPUT"
echo "changed-files=$(git diff --name-only --diff-filter=d HEAD^1 HEAD)" | \
while IFS= read -r line; do printf 'changed-files=%q\n' "$line"; done >> "$GITHUB_OUTPUT"
- name: Check for kyverno in changed files
id: kyverno-check
run: |
Expand Down

0 comments on commit 14b6a95

Please sign in to comment.