Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<!-- PR TITLE: use Conventional Commits format — the commit-lint CI check enforces this.
type(scope): Description → feat(docker): Add versioned Node stage
Valid types: feat · fix · docs · chore · ci · refactor · test · perf · revert
Breaking change: add ! after type → feat!: Switch to pre-built images -->

## Summary

<!-- What does this PR do? Why? -->
Expand Down
9 changes: 9 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ updates:
labels:
- "dependencies"
- "docker"
commit-message:
prefix: "chore"
include: "scope" # → chore(deps): bump trivy from 0.69.2 to 0.69.3

# app_tests Dockerfile — same as above, plus golang and securego/gosec.
- package-ecosystem: "docker"
Expand All @@ -21,6 +24,9 @@ updates:
labels:
- "dependencies"
- "docker"
commit-message:
prefix: "chore"
include: "scope"

# GitHub Actions — tracks all uses: ... action versions.
- package-ecosystem: "github-actions"
Expand All @@ -30,3 +36,6 @@ updates:
labels:
- "dependencies"
- "github-actions"
commit-message:
prefix: "ci"
include: "scope" # → ci(deps): bump actions/checkout from v3 to v4