You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by ho...@apache.org on 2022/05/16 19:30:21 UTC

[solr-docker] branch main updated: More fixes for (#5)

This is an automated email from the ASF dual-hosted git repository.

houston pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr-docker.git


The following commit(s) were added to refs/heads/main by this push:
     new e106750  More fixes for (#5)
e106750 is described below

commit e1067501cf338e7ab169824be5459173ab771a35
Author: Houston Putman <ho...@apache.org>
AuthorDate: Mon May 16 15:29:01 2022 -0400

    More fixes for (#5)
    
    Testing out that this works on #5
    
    Also #3 and #2
---
 .github/workflows/pr-for-official-repo.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/pr-for-official-repo.yml b/.github/workflows/pr-for-official-repo.yml
index c209913..eb7e547 100644
--- a/.github/workflows/pr-for-official-repo.yml
+++ b/.github/workflows/pr-for-official-repo.yml
@@ -29,10 +29,10 @@ jobs:
         id: commit
         run: |
           str="$(jq '.head_commit.message' $GITHUB_EVENT_PATH)"    # get the head_commit message
-          message="$(echo ${str} | tr -d '"'  | sed -E 's/(#[0-9]+([^0-9]|\z?))/apache\/solr-docker\1/g'}"  # get the message, substituting the github links
-          echo ::set-output name=title::${message}         # get the message
-          echo ::set-output name=title::${message%%\\n*}   # get the title
-          echo ::set-output name=body::${message##*\\n}    # get the body
+          message="$(echo ${str}  | sed -E 's/(#[0-9]+([^0-9]|\z?))/apache\/solr-docker\1/g'}"  # get the message, substituting the github links
+          echo ::set-output name=title::${message} | tr -d '"'         # get the message
+          echo ::set-output name=title::${message%%\\n*} | tr -d '"'   # get the title
+          echo ::set-output name=body::${message##*\\n} | tr -d '"'    # get the body
       - name: Install BashBrew
         run: |
           mkdir -p "${HOME}/.local/bin"