Skip to content

Commit

Permalink
chore(infra): Configure dependabot to adhere to the Conventional Comm…
Browse files Browse the repository at this point in the history
…its spec (kyma-project#876)

* Configure dependabot's dependency bumps to adhere to the Conventional Commits spec

* Add a daily run for the Markdown Links Checker
  • Loading branch information
ameteiko authored Sep 22, 2023
1 parent 7ecb0d4 commit 0d0cac2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 2 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ updates:
schedule:
interval: "daily"
commit-message:
prefix: "gomod"
include: "scope"
prefix: "chore(dependabot)"
- package-ecosystem: "docker"
directory: "/"
labels:
Expand All @@ -20,5 +19,4 @@ updates:
schedule:
interval: "daily"
commit-message:
prefix: "docker"
include: "scope"
prefix: "chore(dependabot)"
6 changes: 5 additions & 1 deletion .github/workflows/lint-markdown-links.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
name: Lint Markdown Links
run-name: ${{github.event.pull_request.title}}

on: [ pull_request ]
on:
pull_request:
schedule:
# Run every day at 5:00 AM
- cron: "0 5 * * *"

jobs:
markdown-link-check:
Expand Down

0 comments on commit 0d0cac2

Please sign in to comment.