Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ updates:
interval: "weekly"
day: "monday"
open-pull-requests-limit: 10
commit-message:
prefix: "☕ chore"
labels:
- "security"
- "infra"
Expand All @@ -24,6 +26,8 @@ updates:
interval: "weekly"
day: "monday"
open-pull-requests-limit: 5
commit-message:
prefix: "☕ chore"
labels:
- "security"
- "infra"
Expand All @@ -35,6 +39,8 @@ updates:
interval: "weekly"
day: "monday"
open-pull-requests-limit: 3
commit-message:
prefix: "☕ chore"
labels:
- "security"
- "infra"
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ jobs:
echo "⚠ Skipping bot commit: $msg"
continue
fi
# Allow Dependabot auto-generated commit messages
if echo "$msg" | grep -qE "^(Bump|Update) .+ from .+ to "; then
echo "⚠ Skipping Dependabot commit: $msg"
continue
fi
if ! echo "$msg" | grep -qP "$PATTERN"; then
echo "✖ Invalid commit message: $msg"
FAILED=1
Expand Down
Loading