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

twolf pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mina-sshd.git


The following commit(s) were added to refs/heads/master by this push:
     new a05d99d91 [releng] Don't trigger builds for documentation updates
a05d99d91 is described below

commit a05d99d919ab6bbadb0a2803a482d0357d37eaef
Author: Thomas Wolf <[email protected]>
AuthorDate: Wed Sep 17 18:37:34 2025 +0200

    [releng] Don't trigger builds for documentation updates
    
    Exclude documentation files and also Github issue templates. There's no
    point in running a build if no code or build files have changed.
---
 .github/workflows/build.yml        | 5 +++++
 .github/workflows/master-build.yml | 5 +++++
 2 files changed, 10 insertions(+)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index f9c92ffde..8e9582e96 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -21,6 +21,11 @@ on:
   pull_request:
     branches:
       - master
+    paths-ignore:
+      - 'docs/**'
+      - '*.md'
+      - '.github/ISSUE_TEMPLATE/**'
+      - '*.txt'
   workflow_call:
 
 jobs:
diff --git a/.github/workflows/master-build.yml 
b/.github/workflows/master-build.yml
index 882cbe768..97cd03174 100644
--- a/.github/workflows/master-build.yml
+++ b/.github/workflows/master-build.yml
@@ -21,6 +21,11 @@ on:
   push:
     branches:
       - master
+    paths-ignore:
+      - 'docs/**'
+      - '*.md'
+      - '.github/ISSUE_TEMPLATE/**'
+      - '*.txt'
 
 jobs:
   build:

Reply via email to