Skip to content

Commit 8a7179a

Browse files
committed
chore: migrate to Tailwind CSS v4, upgrade Astro, add Dependabot configuration, and update project metadata.
1 parent d6ad65d commit 8a7179a

8 files changed

Lines changed: 1038 additions & 2071 deletions

File tree

.github/dependabot.yml

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
version: 2
2+
updates:
3+
# GitHub Actions used by all workflows
4+
- package-ecosystem: github-actions
5+
directory: /
6+
schedule:
7+
interval: weekly
8+
day: monday
9+
time: "09:00"
10+
timezone: Etc/UTC
11+
open-pull-requests-limit: 5
12+
commit-message:
13+
prefix: "chore(actions)"
14+
15+
# Astro web app
16+
- package-ecosystem: npm
17+
directory: /web
18+
schedule:
19+
interval: weekly
20+
day: monday
21+
time: "09:00"
22+
timezone: Etc/UTC
23+
open-pull-requests-limit: 5
24+
commit-message:
25+
prefix: "chore(web)"
26+
groups:
27+
astro:
28+
patterns:
29+
- "astro"
30+
- "@astrojs/*"
31+
tailwind:
32+
patterns:
33+
- "tailwindcss"
34+
- "@tailwindcss/*"
35+
36+
# Python dependencies — one entry per track
37+
- package-ecosystem: pip
38+
directory: /tracks/ietf-wimse
39+
schedule:
40+
interval: weekly
41+
day: monday
42+
time: "09:00"
43+
timezone: Etc/UTC
44+
open-pull-requests-limit: 3
45+
commit-message:
46+
prefix: "chore(ietf-wimse)"
47+
48+
- package-ecosystem: pip
49+
directory: /tracks/oauth-wg
50+
schedule:
51+
interval: weekly
52+
day: monday
53+
time: "09:00"
54+
timezone: Etc/UTC
55+
open-pull-requests-limit: 3
56+
commit-message:
57+
prefix: "chore(oauth-wg)"
58+
59+
- package-ecosystem: pip
60+
directory: /tracks/openid
61+
schedule:
62+
interval: weekly
63+
day: monday
64+
time: "09:00"
65+
timezone: Etc/UTC
66+
open-pull-requests-limit: 3
67+
commit-message:
68+
prefix: "chore(openid)"

web/astro.config.mjs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
import { defineConfig } from "astro/config";
2-
import tailwind from "@astrojs/tailwind";
3-
4-
const repoBase = process.env.PAGES_BASE ?? "";
52

63
export default defineConfig({
74
site: process.env.PAGES_SITE ?? "https://example.github.io",
8-
base: repoBase,
5+
base: process.env.PAGES_BASE ?? "",
96
output: "static",
10-
integrations: [tailwind()],
117
markdown: {
128
syntaxHighlight: "shiki",
139
shikiConfig: { theme: "github-light" },

0 commit comments

Comments
 (0)