diff --git a/.github/workflows/build-preview.yaml b/.github/workflows/build-preview.yaml
index 45d68f48a..42a318076 100644
--- a/.github/workflows/build-preview.yaml
+++ b/.github/workflows/build-preview.yaml
@@ -152,7 +152,7 @@ jobs:
- uses: actions/github-script@v7
name: "Notify about build failure"
- if: ${{ failure() }}
+ if: ${{ failure() && env.on_fork != 'true' }}
with:
github-token: ${{ env.token }}
script: |
@@ -165,6 +165,7 @@ jobs:
- uses: actions/github-script@v7
name: "Notify about build preview"
+ if: ${{ env.on_fork != 'true' }}
with:
github-token: ${{ env.token }}
script: |
@@ -174,7 +175,6 @@ jobs:
repo: '${{ env.repo_name }}',
body: ':tada: The preview is built! [Check it out :eyes:](https://${{ env.netalias }}--rladies-dev.netlify.app)'
})
-
diff --git a/data/chapters/australia-melbourne.json b/data/chapters/australia-melbourne.json
index cf970f034..8bb01b488 100644
--- a/data/chapters/australia-melbourne.json
+++ b/data/chapters/australia-melbourne.json
@@ -9,7 +9,8 @@
"twitter": "RLadiesMelb",
"email": "melbourne@rladies.org",
"facebook": "RladiesMelbourne",
- "github": "rladies/meetup-presentations_melbourne"
+ "github": "rladies/meetup-presentations_melbourne",
+ "bluesky": "rladiesmelb.bsky.social"
},
"organizers": {
"current": ["Anna Quaglieri", "Sepideh Foroutan", "Alex Garnham", "Marie Trussart", "Lucy Liu", "Adele Barugahare", "Nikki Rubinson"],
diff --git a/data/chapters/germany-cologne.json b/data/chapters/germany-cologne.json
index 8e62296fd..fc3f3b731 100644
--- a/data/chapters/germany-cologne.json
+++ b/data/chapters/germany-cologne.json
@@ -8,7 +8,8 @@
"meetup": "rladies-cologne",
"twitter": "rladies_cologne",
"email": "cologne@rladies.org",
- "linkedin": "r-ladies-cologne"
+ "linkedin": "r-ladies-cologne",
+ "bluesky": "rladies-cologne.bsky.social"
},
"organizers": {
"current": ["Cosima Meyer", "Gabe Winter"],
diff --git a/data/chapters/italy-rome.json b/data/chapters/italy-rome.json
index eb7308078..06ead73d2 100644
--- a/data/chapters/italy-rome.json
+++ b/data/chapters/italy-rome.json
@@ -10,7 +10,8 @@
"twitter": "rladiesrome",
"youtube": "@rladiesrome",
"github": "rladies/meetup-presentations_rome",
- "linkedin": "company/r-ladies-rome/"
+ "linkedin": "company/r-ladies-rome/",
+ "bluesky": "rladiesrome.bsky.social"
},
"organizers": {
"current": ["Federica Gazzelloni", "Silvana Acosta", "Rafaela Ribeiro Lucas"],
diff --git a/data/chapters/netherlands-amsterdam.json b/data/chapters/netherlands-amsterdam.json
index 7f50d501e..8c8d3d366 100644
--- a/data/chapters/netherlands-amsterdam.json
+++ b/data/chapters/netherlands-amsterdam.json
@@ -7,7 +7,8 @@
"social_media": {
"meetup": "rladies-amsterdam",
"twitter": "RLadiesAMS",
- "email": "amsterdam@rladies.org"
+ "email": "amsterdam@rladies.org",
+ "bluesky": "rladiesamsterdam.bsky.social"
},
"organizers": {
"current": ["Kylie Ainslie", "Asli Kucukosmanoglu"],
diff --git a/data/directory/23u5y2o.json b/data/directory/23u5y2o.json
index 460af0346..ef4a70dde 100644
--- a/data/directory/23u5y2o.json
+++ b/data/directory/23u5y2o.json
@@ -9,7 +9,8 @@
"languages": ["English", "Norwegian"],
"social_media": {
"twitter": "DrMowinckels",
- "github": "drmowinckels"
+ "github": "drmowinckels",
+ "bluesky": "drmowinckels.io"
},
"interests": ["Statistics", "Bayesian Statistics", "Neuroimaging", "Data Visualisation", "Cognitive Psychology", "-{}()dkih 08ijeq´ ø.¨q@lpie"],
"contact_method": ["Twitter"],
diff --git a/data/rblogs/drmowinckels.io.json b/data/rblogs/drmowinckels.io.json
index 6ed411408..5b4757a8f 100644
--- a/data/rblogs/drmowinckels.io.json
+++ b/data/rblogs/drmowinckels.io.json
@@ -11,7 +11,7 @@
{
"name": "Athanasia Monika Mowinckel",
"social_media": [{
- "twitter": "DrMowinckels",
+ "bluesky": "drmowinckels.io",
"mastodon": "@Drmowinckels@fosstodon.org",
"github": "Athanasiamo"
}]
diff --git a/scripts/get_chapters.R b/scripts/get_chapters.R
index a89b1aba5..28a1a5478 100644
--- a/scripts/get_chapters.R
+++ b/scripts/get_chapters.R
@@ -52,7 +52,7 @@ some_cols <- c("meetup", "twitter",
"instagram", "linkedin",
"periscope", "youtube",
"github", "website",
- "slack", "mastodon")
+ "slack", "mastodon", "bluesky")
meetup <- read_json(here("data", "meetup", "chapters.json"),
simplifyVector = TRUE) |>
diff --git a/themes/hugo-rladies/layouts/partials/funcs/social_media.html b/themes/hugo-rladies/layouts/partials/funcs/social_media.html
index d68292516..2379733fb 100644
--- a/themes/hugo-rladies/layouts/partials/funcs/social_media.html
+++ b/themes/hugo-rladies/layouts/partials/funcs/social_media.html
@@ -59,8 +59,11 @@
{{ else if eq .type "slack" }}
{{ $data.Set "string" "%s" }}
{{ $data.Set "fa" "fa-brands fa-slack" }}
-
-
+
+{{ else if eq .type "bluesky" }}
+ {{ $data.Set "string" "https://bsky.app/profile/%s" }}
+ {{ $data.Set "fa" "fa-brands fa-bluesky" }}
+
{{ else }}
{{ $data.Set "string" "%s" }}
{{ $data.Set "fa" "fa fa-globe" }}
diff --git a/themes/hugo-rladies/layouts/partials/head/head.html b/themes/hugo-rladies/layouts/partials/head/head.html
index d32201d20..a4a2b19ad 100644
--- a/themes/hugo-rladies/layouts/partials/head/head.html
+++ b/themes/hugo-rladies/layouts/partials/head/head.html
@@ -3,7 +3,7 @@
-
+