From cf413f671736937d9d594c0b43957d985da8a23b Mon Sep 17 00:00:00 2001 From: David Leal Date: Mon, 11 Sep 2023 20:10:21 +0000 Subject: [PATCH] Fix missing quotation string --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index c7c9dd4..3e9afe3 100644 --- a/action.yml +++ b/action.yml @@ -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)