This commit is contained in:
Primrose 2025-10-12 11:52:37 +08:00
parent b1059321a4
commit e557e7fbcc
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA

View file

@ -0,0 +1,34 @@
name: Update npins sources
on:
schedule:
- cron: '0 0 * * 3,6'
# DEBUG:
push:
branches:
- 'runner-test'
jobs:
create-pr:
runs-on: nix-25.05
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Update
run: |
nix-shell
npins update
just os vanadium build # Make sure it builds
# TODO: push some heavy packages to cachix
- name: Create Pull Request
uses: https://github.com/maxking/forgejo-create-pr@2.12
with:
# required
token: ${{ secrets.GH_TOKEN }}
# optional
base: 'trunk'
commit-message: 'npins: update sources'
pr-title: '[automated] update npins sources'
pr-body: 'This PR contains automated changes'