Skip to content

Update the library lists #9

Update the library lists

Update the library lists #9

Workflow file for this run

name: Update the library lists
on:
schedule:
- cron: '0 15 * * 1'
workflow_dispatch:
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v23
- name: Update the Emacs package set
run: nix flake update
- name: Update the definitions
run: nix develop -c just
- name: Check the output
run: |
nix flake check
git add ./generated
nix eval .#data --json | jq
- name: Prevent flake.lock from being committed
run: |
rm -f flake.lock
git rm -f --cached flake.lock
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
title: 'Update the library lists'
commit-message: 'chore: Update the library lists'
branch: automation/update
delete-branch: true
add-paths: generated
labels: automation,update