Skip to content

Commit

Permalink
Fix the dependabot changelog action because I changed the --name flag…
Browse files Browse the repository at this point in the history
… to --id, but didn't update its use there. (#2123)
  • Loading branch information
SpicyLemon authored Aug 14, 2024
1 parent 30aec1c commit 4f24923
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .changelog/dependabot-changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ where_i_am="$( cd "$( dirname "${BASH_SOURCE:-$0}" )"; pwd -P )"
[[ -n "$verbose" ]] && printf 'Looking for go.mod dependency changes.\n'
# Run the script to create the entry from the changes in go.mod.
# The $verbose variable is purposely not quoted so that it doesn't count as an arg if it's empty.
"$where_i_am/get-dep-changes.sh" --pr "$pr" --name "$branch_fn" $verbose --force --target-branch "$target_branch"
"$where_i_am/get-dep-changes.sh" --pr "$pr" --id "$branch_fn" $verbose --force --target-branch "$target_branch"
ec=$?
[[ -n "$verbose" ]] && printf 'Exit code from get-dep-changes.sh: %d\n' "$ec"

Expand Down

0 comments on commit 4f24923

Please sign in to comment.