From 633fd6845344ae4473104ae891c9e1e1bc179a95 Mon Sep 17 00:00:00 2001 From: Mats Lidell Date: Mon, 29 Jun 2026 22:49:04 +0200 Subject: [PATCH] Do not trigger workflow on doc updates * .github/workflows/main.yml (on): Reduce number of builds by eliminating the main workflow to trigger on updates to markdown and man/** files. Those are handled by the docs workflow. --- .github/workflows/main.yml | 6 ++++++ ChangeLog | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5b585ad9..9ea60a4f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,8 +3,14 @@ name: CI on: push: branches: [ "master" ] + paths-ignore: + - '**.md' + - 'man/**' pull_request: branches: [ "master" ] + paths-ignore: + - '**.md' + - 'man/**' workflow_dispatch: diff --git a/ChangeLog b/ChangeLog index fc0d0623..3f8be853 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2026-06-29 Mats Lidell +* .github/workflows/main.yml (on): Reduce number of builds by + eliminating the main workflow to trigger on updates to markdown and + man/** files. Those are handled by the docs workflow. + * hibtypes.el (hywiki-add-spec, hywiki-message-spec): (hywiki-word-create-and-display): Declare functions.