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
41 changes: 38 additions & 3 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,52 @@ updates:
reviewers:
- "openkcm/go-maintainers"
schedule:
interval: daily
interval: weekly
commit-message:
prefix: "fix"
include: "scope"
groups:
gomod-group:
applies-to: version-updates
patterns:
- "*"
update-types:
- "minor"
- "patch"
open-pull-requests-limit: 5
- package-ecosystem: docker
directory: /
reviewers:
- "openkcm/go-maintainers"
schedule:
interval: daily
interval: weekly
commit-message:
prefix: "fix"
include: "scope"
groups:
docker-group:
applies-to: version-updates
patterns:
- "*"
update-types:
- "minor"
- "patch"
open-pull-requests-limit: 5
- package-ecosystem: "github-actions"
directory: "/"
reviewers:
- "openkcm/go-maintainers"
schedule:
interval: "daily"
interval: weekly
commit-message:
prefix: "fix"
include: "scope"
groups:
actions-group:
applies-to: version-updates
patterns:
- "*"
update-types:
- "minor"
- "patch"
open-pull-requests-limit: 5
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Best Practices: File is missing a newline at end of file

The file ends without a trailing newline. POSIX-compliant text files should end with a newline; many tools (git diff, linters) will warn about files that lack one. Consider adding a trailing newline after the last line.


Please provide feedback on the review comment by checking the appropriate box:

  • 🌟 Awesome comment, a human might have missed that.
  • ✅ Helpful comment
  • 🤷 Neutral
  • ❌ This comment is not helpful

16 changes: 16 additions & 0 deletions .github/workflows/sonar.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Sonar Analysis Secure

on:
workflow_run:
workflows: ["Quality"]
types:
- completed

permissions:
contents: read
statuses: write

jobs:
check:
uses: openkcm/build/.github/workflows/sonar.yaml@main
secrets: inherit
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Best Practices: File is missing a newline at end of file

The file ends without a trailing newline. POSIX-compliant text files should end with a newline; many tools (git diff, linters) will warn about files that lack one. Consider adding a trailing newline after the last line.


Please provide feedback on the review comment by checking the appropriate box:

  • 🌟 Awesome comment, a human might have missed that.
  • ✅ Helpful comment
  • 🤷 Neutral
  • ❌ This comment is not helpful

Loading