You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by rz...@apache.org on 2022/02/09 20:49:24 UTC

[tomee] branch master updated (cfaf732 -> 6a14d6e)

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

rzo1 pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tomee.git.


    from cfaf732  Normalize line endings via .gitattributes to avoid hassle on different OS
     new f1d981d  Adds *.policy to .gitattributes to be handled as text, which needs line ending normalization
     new 6a14d6e  GitHub Actions: Use LF for checkouts to be consistent

The 2 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:
 .gitattributes             | 1 +
 .github/workflows/main.yml | 5 +++++
 2 files changed, 6 insertions(+)

[tomee] 02/02: GitHub Actions: Use LF for checkouts to be consistent

Posted by rz...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rzo1 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee.git

commit 6a14d6e9e4ee42df458f90b848e9efa8ada030ab
Author: Richard Zowalla <rz...@apache.org>
AuthorDate: Wed Feb 9 21:43:56 2022 +0100

    GitHub Actions: Use LF for checkouts to be consistent
---
 .github/workflows/main.yml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index be7e57f..de39d69 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -14,6 +14,11 @@ jobs:
     runs-on: ubuntu-latest
 
     steps:
+    - name: Set git to use LF
+      run: |
+        git config --global core.autocrlf false
+        git config --global core.eol lf
+
     - uses: actions/checkout@v2
     - name: Set up JDK 1.8
       uses: actions/setup-java@v1

[tomee] 01/02: Adds *.policy to .gitattributes to be handled as text, which needs line ending normalization

Posted by rz...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rzo1 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee.git

commit f1d981da4f888ddc96fd363a09a5ab96c38f3ef8
Author: Richard Zowalla <rz...@apache.org>
AuthorDate: Wed Feb 9 21:28:23 2022 +0100

    Adds *.policy to .gitattributes to be handled as text, which needs line ending normalization
---
 .gitattributes | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitattributes b/.gitattributes
index c5297d1..f057d6b 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -22,6 +22,7 @@
 *.jspf          text    eol=lf
 *.md            text    eol=lf
 *.properties    text    eol=lf
+*.policy        text    eol=lf
 *.sbt           text    eol=lf
 *.scala         text    eol=lf
 *.sh            text    eol=lf