From c2f5fe62dcaa64fd816601f71a6e0809ee004889 Mon Sep 17 00:00:00 2001 From: Hays Chan <25737801+hayschan@users.noreply.github.com> Date: Sat, 25 May 2024 17:23:47 +0800 Subject: [PATCH] chore: Ignore markdown files in push and pull_request to CI --- .github/workflows/build_example.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build_example.yml b/.github/workflows/build_example.yml index a48a2a6..78f9214 100644 --- a/.github/workflows/build_example.yml +++ b/.github/workflows/build_example.yml @@ -4,8 +4,12 @@ on: push: branches: - 'main' + paths-ignore: + - '**/*.md' pull_request: types: [opened, reopened, synchronize] + paths-ignore: + - '**/*.md' jobs: build: