Skip to content

Commit

Permalink
case insensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
trueberryless committed Nov 25, 2024
1 parent 1131db9 commit 07fc6fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/sort-repo-files.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
def sort_files(repositories):
for repo in repositories:
repo['files'] = sorted(repo['files'], key=lambda x: x['targetPath'])
repo['files'] = sorted(repo['files'], key=lambda x: x['targetPath'].lower())
return repositories
# Read the JSON file
Expand Down

0 comments on commit 07fc6fe

Please sign in to comment.