Skip to content

Commit

Permalink
init2
Browse files Browse the repository at this point in the history
Signed-off-by: Vladyslav Diachenko <[email protected]>
  • Loading branch information
vlad-diachenko committed Sep 13, 2024
1 parent ac7d404 commit ed1ade5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/helm-loki-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
echo "Comparing directories: $base_branch_dir and $pr_branch_dir"
# Find all files in the left and right directories
base_branch_files=$(find "$base_branch_dir" -type f | sed "s|$base_branch_dir/||")
base_branch_files=$(if [[ -d "$base_branch_dir" ]]; then find "$base_branch_dir" -type f | sed "s|$base_branch_dir/||"; else echo ""; fi)
pr_branch_files=$(find "$pr_branch_dir" -type f | sed "s|$pr_branch_dir/||")
# Check for modified and removed files
Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:
fi

# close <p> and <details>
echo -e "\n\n<\p>\n<\details>" >> $output_file
echo -e "\n\n</p>\n</details>" >> $output_file
done

- name: Post diff as PR comment
Expand Down

0 comments on commit ed1ade5

Please sign in to comment.