Skip to content

Commit a15ba0b

Browse files
committed
Add Dependabot configuration for module dependencies
1 parent 83ee6cd commit a15ba0b

File tree

3 files changed

+39
-1
lines changed

3 files changed

+39
-1
lines changed

.github/Dependabot.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Dependabot configuration for AsBuiltReport.Core
2+
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
3+
4+
version: 2
5+
updates:
6+
# Monitor GitHub Actions
7+
- package-ecosystem: "github-actions"
8+
directory: "/"
9+
schedule:
10+
interval: "weekly"
11+
day: "monday"
12+
labels:
13+
- "dependencies"
14+
- "github-actions"
15+
commit-message:
16+
prefix: "ci"
17+
include: "scope"
18+
open-pull-requests-limit: 5
19+
20+
# Monitor PowerShell modules (via manifest)
21+
- package-ecosystem: "nuget"
22+
directory: "/"
23+
schedule:
24+
interval: "weekly"
25+
day: "monday"
26+
labels:
27+
- "dependencies"
28+
- "powershell"
29+
commit-message:
30+
prefix: "deps"
31+
include: "scope"
32+
open-pull-requests-limit: 5
33+
ignore:
34+
# PScribo updates should be reviewed manually
35+
- dependency-name: "PScribo"
36+
update-types: ["version-update:semver-major"]

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [0.6.11] - Unreleased
8+
## [0.6.11] - 2025-11-07
99

1010
### Added
1111

1212
- Add Health Check best practices for general Ontap configurations
1313
- Add sponsorship information
14+
- Add Dependabot configuration for module dependencies
1415

1516
### Changed
1617

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ The **Options** schema allows certain options within the report to be toggled on
142142
| DiagramTheme | string | White | Set the diagram theme (Black/White/Neon) |
143143
| DiagramWaterMark | string | empty | Set the diagram watermark |
144144
| DiagramType | true / false | true | Toggle to enable/disable the export of individual diagram diagrams |
145+
| DisableDiagramMainLogo | true / false | false | Toggle to enable/disable the main logo in diagrams |
145146
| EnableDiagrams | true / false | false | Toggle to enable/disable infrastructure diagrams |
146147
| EnableDiagramsDebug | true / false | false | Toggle to enable/disable diagram debug option |
147148
| EnableDiagramSignature | true / false | false | Toggle to enable/disable diagram signature (bottom right corner) |

0 commit comments

Comments
 (0)