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
74 changes: 51 additions & 23 deletions .github/workflows/broken-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,51 +2,79 @@ name: Check for broken links

on:
push:
branches:
- master
- main
branches: [main, master]
paths:
- "assets/**"
- "_sass/**"
- "**.bib"
- "**.html"
- "**.js"
- "**.liquid"
- "**/*.md"
- "**.yml"
- "!.github/workflows/axe.yml"
- "!.github/workflows/deploy-docker-tag.yml"
- "!.github/workflows/deploy-image.yml"
- "!.github/workflows/docker-slim.yml"
- "!.github/workflows/lighthouse-badger.yml"
- "!.github/workflows/prettier.yml"
- "Gemfile"
- "Gemfile.lock"
- "!lighthouse_results/**"
- "!README.md"
- "!INSTALL.md"
- "!FAQ.md"
- "!CUSTOMIZE.md"
- "!CONTRIBUTING.md"

pull_request:
branches:
- master
- main
branches: [main, master]
paths:
- "assets/**"
- "_sass/**"
- "**.bib"
- "**.html"
- "**.js"
- "**.liquid"
- "**/*.md"
- "**.yml"
- "!.github/workflows/axe.yml"
- "!.github/workflows/deploy-docker-tag.yml"
- "!.github/workflows/deploy-image.yml"
- "!.github/workflows/docker-slim.yml"
- "!.github/workflows/lighthouse-badger.yml"
- "!.github/workflows/prettier.yml"
- "Gemfile"
- "Gemfile.lock"
- "!lighthouse_results/**"
- "!README.md"
- "!INSTALL.md"
- "!FAQ.md"
- "!CUSTOMIZE.md"
- "!CONTRIBUTING.md"

jobs:
link-checker:
check-links:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Checkout 🛎️
uses: actions/checkout@v4

- name: Setup Ruby 💎
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3.5"
bundler-cache: true

- name: Setup Python 🐍
uses: actions/setup-python@v5
with:
python-version: "3.13"
cache: "pip"

- name: Install dependencies and build site 🔧
run: |
sudo apt-get update && sudo apt-get install -y imagemagick
pip3 install --upgrade nbconvert
export JEKYLL_ENV=production
bundle exec jekyll build

- name: Serve site locally 🌐
run: |
python3 -m http.server 4000 --directory _site &
sleep 3 # give the server time to start

- name: Link Checker 🔗
- name: Check for broken links 🔗
uses: lycheeverse/lychee-action@v2.1.0
with:
fail: true
# removed md files that include liquid tags
args: --user-agent 'curl/7.54' --exclude-path README.md --exclude-path _pages/404.md --exclude-path _pages/blog.md --exclude-path _posts/2018-12-22-distill.md --exclude-path _posts/2023-04-24-videos.md --exclude-path _books/the_godfather.md --verbose --no-progress './**/*.md' './**/*.html'
args: --user-agent 'curl/7.54' --verbose --no-progress http://localhost:4000 #./_site/**/*.html
3 changes: 2 additions & 1 deletion .lycheeignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
linkedin.com
reddit.com
reddit.com
researchgate.net
2 changes: 1 addition & 1 deletion _data/socials.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# x_username: iiccsss2024 # your Twitter handle # I think we still have the account but no longer using
email: info@iiccsss.org
bluesky_url: iiccsss # Bluesky handle
bluesky_url: https://bsky.app/profile/iiccsss.bsky.social # Bluesky handle
mastodon_username: neuromatch.social/@iiccsss # your mastodon instance+username in the format instance.tld/@username
youtube_id: computationalcognitivescie5410 # your youtube channel id (youtube.com/@<youtube_id>)
# github_username: # your GitHub user name
Expand Down
2 changes: 1 addition & 1 deletion _pages/2023.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ nav: false
{% include people_horizontal.liquid name="Annette Leßmöllmann" affiliation="Karlsruhe Institute of Technology" url="https://www.wissenschaftskommunikation.de/author/annettelessmoellmann" img="assets/img/panelists/2023/AnnetteLessmoellmann.jpeg" %}
{% include people_horizontal.liquid name="Nora Freya Lindemann" affiliation="Osnabrück University" url="https://www.researchgate.net/profile/Nora-Lindemann" img="assets/img/panelists/2023/NoraLindemann.jpg" %}
{% include people_horizontal.liquid name="Kristof Meding" affiliation="LfDI Baden-Württemberg" url="https://www.baden-wuerttemberg.datenschutz.de" img="assets/img/panelists/2023/KristofMeding.jpg" %}
{% include people_horizontal.liquid name="Eric Schulz" affiliation="Max Planck Institute for Biological Cybernetics" url="https://www.kyb.tuebingen.mpg.de/person/103915" img="assets/img/panelists/2023/EricSchulz.jpg" %}
{% include people_horizontal.liquid name="Eric Schulz" affiliation="Max Planck Institute for Biological Cybernetics" url="https://scholar.google.de/citations?user=74Cj5GYAAAAJ&hl=en" img="assets/img/panelists/2023/EricSchulz.jpg" %}
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion _pages/past.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
layout: page
layout: none
title: past iterations
nav: true
nav_order: 7
Expand Down
2 changes: 1 addition & 1 deletion _pages/submenus.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
layout: page
layout: none
title: about us
nav: true
nav_order: 6
Expand Down
Loading