Skip to content

Commit

Permalink
fix(update-codeowners-from-packages): sort the order of packages (#183)
Browse files Browse the repository at this point in the history
Signed-off-by: Kenji Miyake <[email protected]>

Signed-off-by: Kenji Miyake <[email protected]>
  • Loading branch information
kenji-miyake authored Sep 22, 2022
1 parent cf0afa6 commit 365fab5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion update-codeowners-from-packages/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ runs:
# List package maintainers
echo "### Automatically generated from package.xml ###" >>.github/CODEOWNERS
for package_xml in $(find . -name package.xml | sed "s|^./||"); do
for package_xml in $(find . -name package.xml | sed "s|^./||" | sort); do
package_dir=$(dirname "$package_xml")
line="$package_dir/**"
Expand Down

0 comments on commit 365fab5

Please sign in to comment.