Skip to content

Commit

Permalink
Fix missing quotation string
Browse files Browse the repository at this point in the history
  • Loading branch information
Panquesito7 committed Sep 11, 2023
1 parent 76e75ca commit cf413f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ runs:
for branch in ${branches[@]}; do
repo_name=${branch%-update}
gh pr create --base ${GITHUB_REF##*/} --head $branch --title 'Bump `'$repo_name'` to its latest commit' --body "$(lua -e 'local config = require("${{ inputs.repos_filename }}").config; if config.update then print(config.update) else print('The subtree `'$repo_name'` to its latest commit') end')
gh pr create --base ${GITHUB_REF##*/} --head $branch --title 'Bump `'$repo_name'` to its latest commit' --body "$(lua -e 'local config = require("${{ inputs.repos_filename }}").config; if config.update then print(config.update) else print('The subtree `'$repo_name'` to its latest commit') end')"
if [[ $(gh pr list --base ${GITHUB_REF##*/} --head $branch) ]]; then
pr=$(gh pr list --base ${GITHUB_REF##*/} --head $branch)
Expand Down

0 comments on commit cf413f6

Please sign in to comment.