Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
557b7ee
ci: Convert GHA workflows to Woodpecker CI pipelines
DaRacci Jan 16, 2026
4653ebe
fix(ci): fixup review notes and other bullshit
DaRacci Mar 22, 2026
7366bc6
feat(hosts/server/nixdev): Shared nix store & cache for ci pipelines
DaRacci Apr 2, 2026
bdefb45
fix(hosts/server/nixdev): dont provision woodpecker forgejo
DaRacci Apr 7, 2026
a1c2fc4
fix: pr requested changes
DaRacci Apr 21, 2026
3125411
fix(modules/nixos/server): harden woodpecker systemd units
DaRacci Apr 24, 2026
d92c3aa
ci: vulnix scanning
DaRacci Apr 24, 2026
61856f9
fix(modules/nixos/server): set writable home for woodpecker nix gc se…
DaRacci May 13, 2026
fb383e7
feat(scripts/module-graph): support since filtering
DaRacci May 13, 2026
727aecf
fix(scripts/lib): setup_logging env check and silent mode
DaRacci May 13, 2026
7ea1655
refactor(modules/nixos/server/woodpecker-nix): overlayfs init service…
DaRacci May 16, 2026
a886524
fix: PR comment suggestions
DaRacci May 17, 2026
3d5df56
fix(woodpekcer-nix): restore safe nix daemon defaults
DaRacci May 20, 2026
66f351f
fix(ci): logic fixes
DaRacci May 20, 2026
8eec444
fix(nu-lib): guard missing previous blobs
DaRacci May 20, 2026
d144186
fix(ci): handle affected map
DaRacci May 20, 2026
a68c211
fix(flake): make flake show evaluate packages
DaRacci May 20, 2026
ce12e90
fix(ci): prevent double trigger jobs on PRs and path filters
DaRacci May 21, 2026
2bc8647
chore: PR review stuff
DaRacci May 21, 2026
ba30454
feat(woodpecker-nix): add systemd overlay mount, migration, and tight…
DaRacci Jun 13, 2026
70f44f8
refactor(woodpecker-nix): add dedicated user and fix service ownership
DaRacci Jun 13, 2026
16b0cb6
feat(woodpecker-nix): replace mount unit with custom service and hand…
DaRacci Jun 13, 2026
57d758e
feat(woodpecker-nix): add fuse-overlayfs fallback for unprivileged co…
DaRacci Jun 14, 2026
1732709
style(docs): fix table column alignment and use consistent horizontal…
DaRacci Jun 14, 2026
bbf349e
fix(woodpecker-nix): set HOME environment variable to /root
DaRacci Jun 14, 2026
f275d38
feat(woodpecker-nix): add cache population service and read-only git …
DaRacci Jun 14, 2026
630e960
feat(woodpecker-nix): add compaction, healthcheck, and overlay promot…
DaRacci Jun 15, 2026
40d683b
fix: resolve multiple CI, module-graph, and Nix service issues
DaRacci Jul 11, 2026
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
75 changes: 0 additions & 75 deletions .github/actions/setup-nix/action.yaml

This file was deleted.

120 changes: 0 additions & 120 deletions .github/workflows/ci.yaml

This file was deleted.

8 changes: 0 additions & 8 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
name: Documentation

on:
push:
branches: [master]

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

defaults:
run:
shell: bash

jobs:
docs:
runs-on: self-hosted
Expand All @@ -23,18 +19,14 @@ jobs:
environment:
name: github-pages
url: ${{ steps.deploy.outputs.page_url }}

steps:
- uses: actions/checkout@v6

- name: Build Documentation
run: nix build .#docs

- name: Upload Pages Artifact
uses: actions/upload-pages-artifact@v5
with:
path: result

- name: Deploy Pages
id: deploy
uses: actions/deploy-pages@v5
Loading