Author: dsahlberg
Date: Sat Mar 1 23:10:50 2025
New Revision: 1924125
URL: http://svn.apache.org/viewvc?rev=1924125&view=rev
Log:
We (obviously) need a proper working copy to test the backports.
Switch to checking out via svn instead of from github.
* .github/workflows/detect-backport-conflicts.yml
(steps): Remove git-stuff and add svn-stuff
Modified:
subversion/trunk/.github/workflows/detect-backport-conflicts.yml
Modified: subversion/trunk/.github/workflows/detect-backport-conflicts.yml
URL:
http://svn.apache.org/viewvc/subversion/trunk/.github/workflows/detect-backport-conflicts.yml?rev=1924125&r1=1924124&r2=1924125&view=diff
==============================================================================
--- subversion/trunk/.github/workflows/detect-backport-conflicts.yml (original)
+++ subversion/trunk/.github/workflows/detect-backport-conflicts.yml Sat Mar 1
23:10:50 2025
@@ -43,13 +43,9 @@ jobs:
sudo apt-get install
subversion
- - name: Use LF for Git checkout
- run: |
- git config --global core.autocrlf false
- git config --global core.eol lf
-
- - uses: actions/checkout@v4
+ - name: Checkout backport branch
+ run: svn co https://svn.apache.org/repos/asf/subversion/branches/1.14.x
- name: Detect conflicting backports
- run: ./tools/dist/detect-conflicting-backports.py
+ run: cd 1.14.x && ./tools/dist/detect-conflicting-backports.py