Skip to content

Commit

Permalink
gitactions update
Browse files Browse the repository at this point in the history
  • Loading branch information
buehlere committed Jan 30, 2024
1 parent 86dbc6c commit e0888a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/generate_codeowners.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ for file in $METAS; do
# Add a double star to the end of the path
path="$path/**"

authors=$(yq ".authors | .[]" "$file" | sed 's/^//')
authors=$(yq '.authors | .[]' "$file" | sed 's/^//')
# Remove quotes from authors
authors=$(echo "$authors" | sed 's/"//g')
echo "$path" $authors >> $output_file
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/owners.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install CLI Dependencies
run: |
sudo apt-get install fd-find wget
wget https://github.com/mikefarah/yq/releases/download/v4.2.0/yq_linux_amd64.tar.gz -O - | sudo tar xz && sudo mv yq_linux_amd64 /usr/bin/yq
wget https://github.com/mikefarah/yq/releases/download/v3/yq_linux_amd64.tar.gz -O - | sudo tar xz && sudo mv yq_linux_amd64 /usr/bin/yq
- name: Run Generate Owner's Script
run: |
chmod +x ./.github/generate_codeowners.sh
Expand Down

0 comments on commit e0888a4

Please sign in to comment.