From 700f7cad54c9f4b1fccea30508fb76a9bb2d4ac3 Mon Sep 17 00:00:00 2001 From: jjangga0214 Date: Wed, 9 Mar 2022 07:26:45 +0900 Subject: [PATCH] chore: ignore if only **.md is editted (#860) --- .github/workflows/build.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 27beec1..fe93c9c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,5 +1,11 @@ name: Build -on: [push, pull_request] +on: + push: + paths-ignore: + - '**.md' + pull_request: + paths-ignore: + - '**.md' jobs: build: strategy: