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
33 changes: 0 additions & 33 deletions .devcontainer/devcontainer.json

This file was deleted.

2 changes: 0 additions & 2 deletions .devcontainer/scripts/postCreate.sh

This file was deleted.

9 changes: 8 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# manual-trigger: 2026-07-30T08:44:57.933Z
version: 2
updates:
- package-ecosystem: "github-actions"
Expand All @@ -9,3 +8,11 @@ updates:
commit-message:
prefix: "chore"
include: "scope"
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 10
commit-message:
prefix: "chore"
include: "scope"
5 changes: 4 additions & 1 deletion .github/workflows/commitmsg-conform.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
name: commit-message-conformance
name: Commit Message Conformance

on:
pull_request: {}

permissions:
statuses: write
checks: write
contents: read
pull-requests: read

jobs:
commitmsg-conform:
uses: actionsforge/actions/.github/workflows/commitmsg-conform.yml@main
21 changes: 21 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Deploy to GitHub Pages

on:
push:
branches: [main]
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: pages
cancel-in-progress: false

jobs:
deploy:
uses: actionsforge/actions/.github/workflows/astro-pages-deploy.yml@main
with:
node-version: "22"
5 changes: 4 additions & 1 deletion .github/workflows/markdown-lint.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
name: markdown-lint
name: Markdown Lint

on:
pull_request: {}

permissions:
statuses: write
checks: write
contents: read
pull-requests: read

jobs:
markdown-lint:
uses: actionsforge/actions/.github/workflows/markdown-lint.yml@main
20 changes: 0 additions & 20 deletions .github/workflows/pages.yml

This file was deleted.

43 changes: 43 additions & 0 deletions .github/workflows/refresh-profile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Refresh Profile README

on:
schedule:
- cron: "0 6 * * *"
workflow_dispatch:

permissions:
contents: write

jobs:
refresh:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

- name: Setup Node
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 22
cache: npm

- name: Install
run: npm ci

- name: Fetch profile README
run: npm run fetch-profile

- name: Commit if changed
run: |
if git diff --quiet -- data/profile.md; then
echo "No profile changes"
exit 0
fi
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add data/profile.md
MSG="$(printf '%s\n\n%s\n' \
'chore: refresh profile readme from jajera/jajera' \
'Pull the latest profile README so the CV site stays in sync.')"
git commit -m "$MSG"
git push
59 changes: 0 additions & 59 deletions .github/workflows/update-repositories.yml

This file was deleted.

17 changes: 17 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# build
dist/
.astro/

# dependencies
node_modules/

# logs / env
npm-debug.log*
.env
.env.*

# OS / editor
.DS_Store
Thumbs.db
*.swp
.idea/
Loading