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
6 changes: 4 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ updates:
- package-ecosystem: pip
directory: "/"
schedule:
interval: daily
interval: weekly
day: wednesday
time: "08:00"
open-pull-requests-limit: 10
target-branch: dev
Expand All @@ -17,7 +18,8 @@ updates:
- package-ecosystem: npm
directory: "/components"
schedule:
interval: daily
interval: weekly
day: wednesday
time: "08:00"
open-pull-requests-limit: 10
target-branch: dev
Expand Down
6 changes: 4 additions & 2 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"extends": [
"config:recommended"
"config:recommended",
"schedule:weekly"
],
"schedule": ["* * * * 3"],
"dependencyDashboard": true,
"dependencyDashboardApproval": false,
"baseBranchPatterns": ["dev"],
Expand All @@ -16,7 +18,7 @@
"dojo/components/yarn.lock",
"dojo/components/package.json"
],
"ignoreDeps": [],
"ignoreDeps": ["gohugoio/hugo"],
"packageRules": [{
"matchPackageNames": ["*"],
"commitMessageExtra": "from {{currentVersion}} to {{#if isMajor}}v{{{newMajor}}}{{else}}{{#if isSingleVersion}}v{{{newVersion}}}{{else}}{{{newValue}}}{{/if}}{{/if}}",
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup Hugo
uses: peaceiris/actions-hugo@75d2e84710de30f6ff7268e08f310b60ef14033f # v3.0.0
with:
hugo-version: '0.153.4' # renovate: datasource=github-releases depName=gohugoio/hugo
hugo-version: '0.153.4'
extended: true

- name: Setup Node
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate_docs_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Setup Hugo
uses: peaceiris/actions-hugo@75d2e84710de30f6ff7268e08f310b60ef14033f # v3.0.0
with:
hugo-version: '0.153.4' # renovate: datasource=github-releases depName=gohugoio/hugo
hugo-version: '0.153.4'
extended: true

- name: Setup Node
Expand Down
Loading