Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ElaiShalevRH committed Sep 24, 2024
1 parent a43f6fb commit df9ef9c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/check-whitespace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,25 @@ on:
jobs:
check-whitespace:
runs-on: ubuntu-latest
steps:
steps:
- uses: actions/checkout@v4

- name: Get Changed Files
id: get-changed-files
uses: tj-actions/verify-changed-files@v20
id: changed-files
uses: tj-actions/changed-files@v45
with:
files: |
**/application.properties
- name: Check white spaces scripts
env:
CHANGED_FILES: ${{ steps.get-changed-files.outputs.files }}
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
run: |
tw_lines=""
for file in $CHANGED_FILES
for file in ${ALL_CHANGED_FILES}
do
lines=$(egrep -rnIH " +$" $file | cut -f-2 -d ":")
if [ ! -z "$lines" ]; then
Expand Down
2 changes: 1 addition & 1 deletion mta-v7.x/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ quarkus.log.category."org.apache.http".level=INFO
quarkus.log.level=INFO

# HEY
# HEYY
# HEYY

0 comments on commit df9ef9c

Please sign in to comment.