mirror of
https://github.com/kjanat/articulate-parser.git
synced 2026-01-16 07:02:09 +01:00
- Add CGO_ENABLED=1 to CI test step for race detection - Fix docker job needs (remove dependency-review, only runs on PRs) - Restore .pre-commit-config.yaml for local dev safety - Rename html_template.html to .gohtml (conventional extension) - Add GitHub URL and default branch info to AGENTS.md - Add .dprint.jsonc config - Various formatting normalization
87 lines
1.8 KiB
YAML
87 lines
1.8 KiB
YAML
version: 2
|
|
updates:
|
|
# Check for updates to GitHub Actions
|
|
- package-ecosystem: "github-actions"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "weekly"
|
|
day: "monday"
|
|
time: "07:00"
|
|
timezone: "Europe/Amsterdam"
|
|
open-pull-requests-limit: 2
|
|
labels:
|
|
- "dependencies"
|
|
- "dependencies/github-actions"
|
|
commit-message:
|
|
prefix: "ci"
|
|
include: "scope"
|
|
|
|
# Check for updates to Docker
|
|
- package-ecosystem: "docker"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "weekly"
|
|
day: "monday"
|
|
time: "07:00"
|
|
timezone: "Europe/Amsterdam"
|
|
open-pull-requests-limit: 2
|
|
labels:
|
|
- "dependencies"
|
|
- "dependencies/docker"
|
|
commit-message:
|
|
prefix: "docker"
|
|
include: "scope"
|
|
groups:
|
|
docker:
|
|
patterns:
|
|
- "*"
|
|
update-types:
|
|
- "minor"
|
|
- "patch"
|
|
|
|
# Check for updates to Docker Compose
|
|
- package-ecosystem: "docker-compose"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "weekly"
|
|
day: "monday"
|
|
time: "07:00"
|
|
timezone: "Europe/Amsterdam"
|
|
open-pull-requests-limit: 2
|
|
labels:
|
|
- "dependencies"
|
|
- "dependencies/docker-compose"
|
|
commit-message:
|
|
prefix: "docker"
|
|
include: "scope"
|
|
groups:
|
|
docker:
|
|
patterns:
|
|
- "*"
|
|
update-types:
|
|
- "minor"
|
|
- "patch"
|
|
|
|
# Check for updates to Go modules
|
|
- package-ecosystem: "gomod"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "weekly"
|
|
day: "monday"
|
|
time: "07:00"
|
|
timezone: "Europe/Amsterdam"
|
|
open-pull-requests-limit: 2
|
|
labels:
|
|
- "dependencies"
|
|
- "dependencies/go"
|
|
commit-message:
|
|
prefix: "deps"
|
|
include: "scope"
|
|
groups:
|
|
go-modules:
|
|
patterns:
|
|
- "*"
|
|
update-types:
|
|
- "minor"
|
|
- "patch"
|