Skip to content

Commit d96c94e

Browse files
committed
Domain update
1 parent acce04d commit d96c94e

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Deploy to happycommits.dev
1+
name: Deploy to forgoodfirstissue.dev
22

33
on:
44
# Runs on pushes targeting the default branch

generate.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -323,18 +323,18 @@ const getRepositories = async (
323323
const sitemap = `<?xml version="1.0" encoding="UTF-8"?>
324324
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
325325
<url>
326-
<loc>https://happycommits.dev</loc>
326+
<loc>https://forgoodfirstissue.dev</loc>
327327
</url>
328328
${data.languages
329329
.map(
330330
(language: CountableTagModel) =>
331-
`<url><loc>https://happycommits.dev/language/${language.id}</loc></url>`
331+
`<url><loc>https://forgoodfirstissue.dev/language/${language.id}</loc></url>`
332332
)
333333
.join("")}
334334
${data.topics
335335
.map(
336336
(topic: CountableTagModel) =>
337-
`<url><loc>https://happycommits.dev/topic/${topic.id}</loc></url>`
337+
`<url><loc>https://forgoodfirstissue.dev/topic/${topic.id}</loc></url>`
338338
)
339339
.join("")}
340340
</urlset>

pages/_document.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ export default function Document() {
99
content="Making your next open-source contribution make the world better. Happy Commits is a curated list of accessible issues from open-source projects helping our communities. Start today!"
1010
/>
1111

12-
<meta property="og:url" content="https://happycommits.dev" />
12+
<meta property="og:url" content="https://forgoodfirstissue.dev" />
1313
<meta property="og:type" content="website" />
1414
<meta
1515
property="og:title"
1616
content="Happy Commits | Make your next open-source contribution matter."
1717
/>
18-
<meta property="og:image" content="https://happycommits.dev/" />
18+
<meta property="og:image" content="https://forgoodfirstissue.dev/" />
1919

2020
<meta name="twitter:card" content="summary_large_image" />
21-
<meta property="twitter:domain" content="happycommits.dev" />
22-
<meta property="twitter:url" content="https://happycommits.dev" />
21+
<meta property="twitter:domain" content="forgoodfirstissue.dev" />
22+
<meta property="twitter:url" content="https://forgoodfirstissue.dev" />
2323
<meta
2424
name="twitter:title"
2525
content="Happy Commits | Make your next open-source contribution matter."
@@ -28,7 +28,7 @@ export default function Document() {
2828
name="twitter:description"
2929
content="Making your next open-source contribution make the world better. Happy Commits is a curated list of accessible issues from open-source projects helping our communities. Start today!"
3030
/>
31-
<meta name="twitter:image" content="https://happycommits.dev/" />
31+
<meta name="twitter:image" content="https://forgoodfirstissue.dev/" />
3232

3333
<meta charSet="UTF-8" />
3434
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />

0 commit comments

Comments
 (0)