Skip to content

Commit

Permalink
fix(update-codeowners-from-packages): use "**" instead of "*" (#181)
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 14, 2022
1 parent acfda12 commit 49510f5
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 @@ -65,7 +65,7 @@ runs:
echo "### Automatically generated from package.xml ###" >>.github/CODEOWNERS
for package_xml in $(find . -name package.xml | sed "s|^./||"); do
package_dir=$(dirname "$package_xml")
line="$package_dir/*"
line="$package_dir/**"
for maintainer in $(grep '<maintainer' "$package_xml" | sed -E 's|.*email="(.*)".*|\1|'); do
line+=" $maintainer"
Expand Down

0 comments on commit 49510f5

Please sign in to comment.