Compare commits

...

2 Commits

Author SHA1 Message Date
m3tm3re
6221984a29 chore: sync beads state 2026-01-14 20:10:04 +01:00
m3tm3re
287bcfea8e ci: use self-hosted nixos runner and change schedule to daily 2026-01-14 20:09:41 +01:00
2 changed files with 3 additions and 18 deletions

0
.beads/.sync.lock Normal file
View File

View File

@@ -2,7 +2,7 @@ name: Update Nix Packages with nix-update
on:
schedule:
- cron: '@weekly'
- cron: '0 2 * * *'
workflow_dispatch: # Allow manual triggering
inputs:
package:
@@ -16,9 +16,9 @@ env:
GIT_COMMITTER_NAME: 'nix-update bot'
GIT_COMMITTER_EMAIL: 'bot@m3ta.dev'
jobs:
jobs:
nix-update:
runs-on: ubuntu-latest
runs-on: nixos
steps:
- name: Checkout repository
uses: actions/checkout@v4
@@ -26,21 +26,6 @@ jobs:
fetch-depth: 0
token: ${{ secrets.NIX_UPDATE_TOKEN }}
- name: Install Nix
uses: https://github.com/cachix/install-nix-action@v31
with:
extra_nix_config: |
experimental-features = nix-command flakes
sandbox = false
- name: Configure Nix
run: |
mkdir -p ~/.config/nix
cat >> ~/.config/nix/nix.conf << EOF
experimental-features = nix-command flakes
sandbox = false
EOF
- name: Check for available packages to update
id: check-packages
run: |