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

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


The following commit(s) were added to refs/heads/master by this push:
     new b5ef0871d9 build.yml: Excludes the workflow if the file is AUTHORS
b5ef0871d9 is described below

commit b5ef0871d9544716b6144835f31f3f325ae439f8
Author: simbit18 <101105604+simbi...@users.noreply.github.com>
AuthorDate: Tue Jul 15 17:48:14 2025 +0200

    build.yml: Excludes the workflow if the file is AUTHORS
    
    CI does not compile everything for a simple modification of the AUTHORS 
file.
    
    Signed-off-by: simbit18 <simbi...@gmail.com>
---
 .github/workflows/build.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index e24245eac2..4c416f4473 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -15,10 +15,12 @@ name: Build
 on:
   pull_request:
     paths-ignore:
+      - 'AUTHORS'
       - 'Documentation/**'
       - 'tools/ci/docker/linux/**'
   push:
     paths-ignore:
+      - 'AUTHORS'
       - 'Documentation/**'
     branches:
       - 'releases/*'

Reply via email to