Skip to content

Commit 0750406

Browse files
committed
Add dependabot cooldown; bump Astro & esbuild
Add a 7-day cooldown to Dependabot update configs to reduce frequent PR noise. Add npm and VS Code Extension links to the website social links. Bump website dependency constraints for astro (to ^5.17.3) and esbuild (to ^0.27.3) and update the lockfile accordingly.
1 parent e78c0b5 commit 0750406

4 files changed

Lines changed: 479 additions & 6 deletions

File tree

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ updates:
55
schedule:
66
interval: weekly
77
versioning-strategy: increase
8+
cooldown:
9+
default-days: 7
810
groups:
911
dependencies:
1012
applies-to: version-updates
@@ -19,6 +21,8 @@ updates:
1921
schedule:
2022
interval: monthly
2123
versioning-strategy: increase
24+
cooldown:
25+
default-days: 7
2226
groups:
2327
dependencies:
2428
applies-to: version-updates
@@ -33,6 +37,8 @@ updates:
3337
schedule:
3438
interval: monthly
3539
open-pull-requests-limit: 1
40+
cooldown:
41+
default-days: 7
3642
groups:
3743
github-actions:
3844
patterns:

website/astro.config.mjs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,16 @@ export default defineConfig({
4848
label: 'stackOverflow',
4949
href: 'https://stackoverflow.com/questions/tagged/htmlhint',
5050
},
51+
{
52+
icon: 'npm',
53+
label: 'npm',
54+
href: 'https://www.npmjs.com/package/htmlhint',
55+
},
56+
{
57+
icon: 'vscode',
58+
label: 'VS Code Extension',
59+
href: 'https://marketplace.visualstudio.com/items?itemName=HTMLHint.vscode-htmlhint',
60+
},
5161
],
5262
head: [
5363
{

0 commit comments

Comments
 (0)