Author: ivan
Date: Mon Jul  6 14:39:05 2026
New Revision: 1935956

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

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

Modified: subversion/branches/1.14.x/.github/workflows/autoconf.yml
==============================================================================
--- subversion/branches/1.14.x/.github/workflows/autoconf.yml   Mon Jul  6 
12:59:25 2026        (r1935955)
+++ subversion/branches/1.14.x/.github/workflows/autoconf.yml   Mon Jul  6 
14:39:05 2026        (r1935956)
@@ -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 }}

Reply via email to