Skip to content

Commit

Permalink
Dependabot PR, do not ignore root module in core (#5750)
Browse files Browse the repository at this point in the history
Signed-off-by: Bogdan <[email protected]>
  • Loading branch information
bogdandrutu authored Jul 25, 2022
1 parent 5ab00fc commit 55b68d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/scripts/dependabot-pr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ git checkout -b $PR_NAME
IFS=$'\n'
requests=$(gh pr list --search "author:app/dependabot" --json number,title --template '{{range .}}{{tablerow .title}}{{end}}')
message=""
dirs=`find . -type f -name "go.mod" -exec dirname {} \; | sort | egrep '^./'`
dirs=`find . -type f -name "go.mod" -exec dirname {} \; | sort `

for line in $requests; do
if [[ $line != Bump* ]]; then
Expand Down

0 comments on commit 55b68d2

Please sign in to comment.