Skip to content

Commit a6319ed

Browse files
committed
fix: add paths-ignore for README and docs in workflows
1 parent 54f5097 commit a6319ed

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

.github/workflows/dev-build.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,16 @@ name: 🔧 Development Build
33
on:
44
push:
55
branches: [ develop, feature/* ]
6+
paths-ignore:
7+
- 'README.md'
8+
- '*.md'
9+
- 'docs/**'
610
pull_request:
711
branches: [ develop ]
12+
paths-ignore:
13+
- 'README.md'
14+
- '*.md'
15+
- 'docs/**'
816

917
env:
1018
REGISTRY: ghcr.io

.github/workflows/release.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,16 @@ on:
44
push:
55
branches: [ main ]
66
tags: [ 'v*' ]
7+
paths-ignore:
8+
- 'README.md'
9+
- '*.md'
10+
- 'docs/**'
711
pull_request:
812
branches: [ main ]
13+
paths-ignore:
14+
- 'README.md'
15+
- '*.md'
16+
- 'docs/**'
917
workflow_dispatch:
1018
inputs:
1119
tag:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Kubernetes Deployment MCP Server
22

33
![Build Status](https://github.com/tsviz/k8s-mcp/workflows/🚀%20Release%20Docker%20Images/badge.svg)
4-
![CodeQL](https://github.com/tsviz/k8s-mcp/workflows/🔒%20CodeQL%20Security%20Scan/badge.svg)
4+
![Dev Build](https://github.com/tsviz/k8s-mcp/workflows/�%20Development%20Build/badge.svg)
55
![License](https://img.shields.io/github/license/tsviz/k8s-mcp)
66
![Version](https://img.shields.io/github/v/release/tsviz/k8s-mcp)
77

0 commit comments

Comments
 (0)