You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-11Lines changed: 13 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,8 @@
7
7
8
8
> **📚 Plugin Development Guide**: Since many users of mkp-builder are developing CheckMK plugins, we maintain comprehensive documentation for CheckMK 2.3.x plugin development in [`cmk-pluigin-guide.md`](cmk-api-doc.md). This guide covers agent plugins, check plugins, rulesets, graphing, and bakery integration with practical examples and best practices.
9
9
10
+
> **🚨 Breaking Changes in v2.0.0**: If you're upgrading from v1.x, please note that v2.0.0 introduces breaking changes. The configuration file format has changed from `.mkp-builderrc` to `.mkp-builder.ini` with INI format syntax. GitHub Action input names have also been updated. See the [changelog](CHANGES.md) for full migration details.
11
+
10
12
A reusable GitHub Action for building CheckMK MKP (Monitoring Konfiguration Package) files from local directory structures.
11
13
12
14
## Features
@@ -22,7 +24,7 @@ A reusable GitHub Action for building CheckMK MKP (Monitoring Konfiguration Pack
22
24
23
25
```yaml
24
26
- name: Build MKP Package
25
-
uses: oposs/mkp-builder@v1
27
+
uses: oposs/mkp-builder@v2
26
28
with:
27
29
version: '1.2.3'
28
30
```
@@ -33,10 +35,10 @@ For production use, choose the appropriate versioning strategy:
33
35
34
36
```yaml
35
37
# Pin to exact version (recommended for production)
36
-
- uses: oposs/mkp-builder@v1.2.3
38
+
- uses: oposs/mkp-builder@v2.0.0
37
39
38
40
# Pin to major version (gets latest features and fixes)
39
-
- uses: oposs/mkp-builder@v1
41
+
- uses: oposs/mkp-builder@v2
40
42
41
43
# Use latest from main branch (not recommended for production)
0 commit comments