Skip to content
This repository was archived by the owner on Mar 2, 2026. It is now read-only.

Commit cf4d2f4

Browse files
committed
Add GitHub configs for CI/CD and dependency updates
Added `.github/dependabot.yml` to automate dependency updates for `nuget` (daily) and `github-actions` (weekly). Included new GitHub workflow files (`build.yml`, `publish.yml`) and a funding file (`FUNDING.yml`). Updated the solution file to include these under `/Solution Items/`. These changes enhance CI/CD workflows and dependency management.
1 parent af0ef76 commit cf4d2f4

2 files changed

Lines changed: 20 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "nuget" # See documentation for possible values
9+
directory: "/" # Location of package manifests
10+
schedule:
11+
interval: "daily"
12+
open-pull-requests-limit: 10
13+
- package-ecosystem: "github-actions"
14+
directory: "/"
15+
schedule:
16+
interval: "weekly"

AnyBar.Localization.slnx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
<Solution>
22
<Folder Name="/Solution Items/">
3+
<File Path=".github/dependabot.yml" />
4+
<File Path=".github/FUNDING.yml" />
5+
<File Path=".github/workflows/build.yml" />
6+
<File Path=".github/workflows/publish.yml" />
37
<File Path="global.json" />
48
<File Path="LICENSE" />
59
<File Path="README.md" />

0 commit comments

Comments
 (0)