Skip to content

Commit

Permalink
actions: use find to avoid using globs
Browse files Browse the repository at this point in the history
Signed-off-by: lucasew <[email protected]>
  • Loading branch information
lucasew committed Dec 23, 2024
1 parent 39fc017 commit 536d4e7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/nixpkgs-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,9 @@ jobs:
run: |
echo "$TOP_PART" >> report.md
find reports -type f
cat reports/**/*.md >> report.md
for item in $(find reports -name report.md); do
cat "$item" >> report.md
done
- uses: actions/github-script@v7
env:
PR: ${{ github.event.inputs.pr }}
Expand Down

0 comments on commit 536d4e7

Please sign in to comment.