Skip to content

update-packages

update-packages #14

name: update-packages
on:
workflow_dispatch: # allows manual triggering
schedule:
- cron: '0 1 * * 0' # runs weekly on Sunday at 00:00
jobs:
refresh-packages:
runs-on: ubuntu-latest
if: github.repository_owner == 'vdemeester'
steps:
- name: Checkout repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Install Nix
uses: cachix/install-nix-action@6004951b182f8860210c8d6f0d808ec5b1a33d28 # v25
with:
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
nix_path: nixpkgs=channel:nixos-unstable
- name: Configure Git
run: |
git config user.name github-actions
git config user.email github-actions@github.com
- name: Update inputs
run: |
./update
- name: Push commit with updated inputs
run: |
git status
git add repos
git commit -m "Auto-update packages"
git pull --rebase --autostash
git push