Author: ivan
Date: Thu Jul  2 11:16:47 2026
New Revision: 1935798

Log:
On 1.15.x: Merge r1935797 from trunk:
  GHA: Do not trigger build for changes in non-code files.
  Justification:
    Keep GitHub Actions in sync with trunk.
  Votes:
    +1: ivan (only affects GHA)

Modified:
   subversion/branches/1.15.x/   (props changed)
   subversion/branches/1.15.x/.github/workflows/autoconf.yml
   subversion/branches/1.15.x/.github/workflows/cmake.yml

Modified: subversion/branches/1.15.x/.github/workflows/autoconf.yml
==============================================================================
--- subversion/branches/1.15.x/.github/workflows/autoconf.yml   Thu Jul  2 
11:07:18 2026        (r1935797)
+++ subversion/branches/1.15.x/.github/workflows/autoconf.yml   Thu Jul  2 
11:16:47 2026        (r1935798)
@@ -24,8 +24,24 @@ name: autoconf
 on:
   push:
     branches: ["*"]
+    paths-ignore:
+      - 'doc/**'
+      - 'notes/**'
+      - CHANGES
+      - COMMITTERS
+      - INSTALL
+      - STATUS
+      - README
   pull_request:
     branches: ["*"]
+    paths-ignore:
+      - 'doc/**'
+      - 'notes/**'
+      - CHANGES
+      - COMMITTERS
+      - INSTALL
+      - STATUS
+      - README
 
 concurrency:
   group: ${{ github.workflow }}-${{ github.ref }}

Modified: subversion/branches/1.15.x/.github/workflows/cmake.yml
==============================================================================
--- subversion/branches/1.15.x/.github/workflows/cmake.yml      Thu Jul  2 
11:07:18 2026        (r1935797)
+++ subversion/branches/1.15.x/.github/workflows/cmake.yml      Thu Jul  2 
11:16:47 2026        (r1935798)
@@ -24,8 +24,24 @@ name: CMake
 on:
   push:
     branches: ["*"]
+    paths-ignore:
+      - 'doc/**'
+      - 'notes/**'
+      - CHANGES
+      - COMMITTERS
+      - INSTALL
+      - STATUS
+      - README
   pull_request:
     branches: ["*"]
+    paths-ignore:
+      - 'doc/**'
+      - 'notes/**'
+      - CHANGES
+      - COMMITTERS
+      - INSTALL
+      - STATUS
+      - README
 
 concurrency:
   group: ${{ github.ref }}

Reply via email to