Skip to content

chore(sync): 🔨 synced file(s) with seedcase-project/seedcase-theme #121

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 23, 2025
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
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ exhaustive, and do not form part of our licenses.
such as asking that all changes be marked or described.
Although not required by our licenses, you are encouraged to
respect those requests where reasonable. More considerations
for the public:
for the public:
wiki.creativecommons.org/Considerations_for_licensees

=======================================================================
Expand Down
12 changes: 6 additions & 6 deletions guides/adding-posts.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -81,26 +81,26 @@ Regardless, in both routes the steps are:
the commands to run for that:

``` bash
# Create and move to a new branch.
# Call the branch any name you want,
# Create and move to a new branch.
# Call the branch any name you want,
# I'll use the `adding-new-post`.
git checkout -b adding-new-post
# Replace `NEW_FILE` with the actual name of the file
git add NEW_FILE
git add NEW_FILE
# Add a short message about what you are committing
git commit -m "New post about BRIEF_DESCRIPTION"
# Push the changes up to GitHub
git push origin adding-new-post
# Switch to the main branch
git checkout main
```

After pushing up the GitHub, you will need to go to the
repository and create a new Pull Request from your newly pushed
branch.

- No matter if you want to add a file directly on GitHub or via the command line, you can find more guidance in the [GitHub Docs](https://docs.github.com/en/repositories/working-with-files/managing-files/adding-a-file-to-a-repository).


6. You are all done! That's it :smile:

Expand Down
2 changes: 1 addition & 1 deletion guides/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ listing:
contents: .
type: default
sort: "title"
fields:
fields:
- "title"
- "author"
- "description"
Expand Down
2 changes: 1 addition & 1 deletion images/home.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,3 @@ about:
---

## Image from [Freepik](https://www.freepik.com) {.appendix}

2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ check-commits:
number_of_commits=$(git rev-list --count HEAD ^main)
if [[ ${branch_name} != "main" && ${number_of_commits} -gt 0 ]]
then
uvx cz check --rev-range main..HEAD
uvx --from commitizen cz check --rev-range main..HEAD
else
echo "Can't either be on ${branch_name} or have more than ${number_of_commits}."
fi
Expand Down
2 changes: 1 addition & 1 deletion learn/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ listing:
contents: shorts
type: default
sort: "title"
fields:
fields:
- "title"
- "author"
- "description"
Expand Down
2 changes: 1 addition & 1 deletion learn/shorts/_template.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: |
author: ""
date: ""
# date-modified: ""
categories:
categories:
- text
---

Expand Down
18 changes: 9 additions & 9 deletions learn/shorts/intro-gh-actions.qmd
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
title: "An brief introduction to automation using GitHub Actions"
description: |
The GitHub Actions feature is a powerful way of running code or a series of tasks on an
The GitHub Actions feature is a powerful way of running code or a series of tasks on an
independent and fresh computing environment. You can use these to
automate tasks, run tasks on a schedule, test your code, or perform any number
of tasks that you'd rather have a computer handle instead of doing manually.
author: "Luke W. Johnston"
date: "2024-05-21"
# date-modified: ""
categories:
categories:
- github actions
- automation
- servers
Expand Down Expand Up @@ -88,7 +88,7 @@ has to be kept in the `.github/workflows/` folder of the repository and
the file must be a [YAML](https://en.wikipedia.org/wiki/YAML) file
(ending in `.yml` or `.yaml`):

```
```
reponame/
└── .github/
└── workflows/
Expand Down Expand Up @@ -296,7 +296,7 @@ repository, we need to give the workflow some permissions to be able to
write to that branch. We'll add that by using the `permissions` section:

``` yaml
permissions:
permissions:
contents: write
pages: write
```
Expand Down Expand Up @@ -356,12 +356,12 @@ second version `v2`). Lastly, we want to run Quarto to build the website
and publish it to the `gh-pages` branch:

``` yaml
- name: Publish to GitHub Pages (and render)
- name: Publish to GitHub Pages (and render)
uses: quarto-dev/quarto-actions/publish@v2
with:
target: gh-pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```

Because we will be saving the built website to the `gh-pages` branch, we
Expand All @@ -386,7 +386,7 @@ on:
push:
branches:
- main
permissions:
permissions:
contents: write
pages: write
jobs:
Expand All @@ -397,12 +397,12 @@ jobs:
uses: actions/checkout@v4
- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
- name: Publish to GitHub Pages (and render)
- name: Publish to GitHub Pages (and render)
uses: quarto-dev/quarto-actions/publish@v2
with:
target: gh-pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```

With these few lines of code, we now have a GitHub Actions workflow that
Expand Down
4 changes: 2 additions & 2 deletions learn/shorts/python-packaging-basics.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: |
author: Luke W. Johnston
date: 2023-07-25
# date-modified: ""
categories:
categories:
- python
- packaging
- introduction
Expand Down Expand Up @@ -70,7 +70,7 @@ files that look a bit like this:

<!-- Created with: https://tree.nathanfriend.io/ -->

```
```
packagename/
├── packagename/
│ ├── ___init___.py
Expand Down
2 changes: 1 addition & 1 deletion posts/fair-impact-roadshow-dk/index.qmd
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "Experiences from the FAIR-IMPACT National Roadshow in Denmark"
description: "An online event to showcase FAIR activities happening across European Union countries."
author:
author:
- "Luke W. Johnston"
- "Kristiane Beicher"
date: "2024-10-28"
Expand Down
2 changes: 1 addition & 1 deletion posts/github-intro-tvaers-2025/index.qmd
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "GitHub presentation for Tværs Gruppemøde, April 2025"
description: "A presentation introducing GitHub and what it can be used for in a research context. Presented at the Tværs Gruppemøde in April 2025."
author:
author:
- "Signe Kirk Brødbæk"
date: "2025-04-28"
categories:
Expand Down
2 changes: 1 addition & 1 deletion posts/github-intro-tvaers-2025/logo-github.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion posts/github-intro-tvaers-2025/logo-text-github.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions posts/github-intro-tvaers-2025/slides.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "Introduction to GitHub"
subtitle: "Tværs Gruppemøde, April 2025"
author: "Signe Kirk Brødbæk"
format:
format:
revealjs:
theme: default
slide-number: true
Expand Down Expand Up @@ -66,7 +66,7 @@ I spend 95 % of my work time using GitHub :raised_hands:
- Website: At its core, it's a website. If you open up your browser
and type in "GitHub.com", you will be taken to GitHub
- Stores files: GitHub is a place where you can store and share files
related to a project, like a website, in a "repository" (meaning "storage" or "place to keep things", in Danish: "opbevare").
related to a project, like a website, in a "repository" (meaning "storage" or "place to keep things", in Danish: "opbevare").
- A repository is like a folder on your computer, but instead of being on your
computer, it's on the internet. You can access it from anywhere with
an internet connection.
Expand Down