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 20:21:58 UTC

[solr-docker] branch main updated (218e12c -> 2018165)

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

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


 discard 218e12c  Even more fixes for (#5)
     new 2018165  Even more fixes for (#5)

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (218e12c)
            \
             N -- N -- N   refs/heads/main (2018165)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/pr-for-official-repo.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


[solr-docker] 01/01: Even more fixes for (#5)

Posted by ho...@apache.org.
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

commit 2018165ce12bc0808d1d396a2960ca15914bdf26
Author: Houston Putman <ho...@apache.org>
AuthorDate: Mon May 16 16:20:00 2022 -0400

    Even more fixes for (#5)
    
    Testing out that this works on #5
    
    another#423 should not be affected
    
    Also #3 and #2
---
 .github/workflows/pr-for-official-repo.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/pr-for-official-repo.yml b/.github/workflows/pr-for-official-repo.yml
index 2d7281a..5f2d655 100644
--- a/.github/workflows/pr-for-official-repo.yml
+++ b/.github/workflows/pr-for-official-repo.yml
@@ -29,7 +29,7 @@ jobs:
         id: commit
         run: |
           str="$(jq '.head_commit.message' $GITHUB_EVENT_PATH)"    # get the head_commit message
-          message="$(echo ${str}  | sed -E 's/(#[0-9]+([^0-9]|\z?))/apache\/solr-docker\1/g')"  # get the message, substituting the github links
+          message="$(echo ${str} | sed -E 's/^#/ #/g' | sed -E 's/(#[0-9]+)$/\1 /g' | sed -E 's/([^a-zA-Z])(#[0-9]+[^0-9])/\1apache\/solr-docker\2/g')"  # get the message, substituting the github links
           echo ::set-output name=message::${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