commit
bde606ad22
3 changed files with 39 additions and 1 deletions
8
.github/workflows/build.yml
vendored
8
.github/workflows/build.yml
vendored
|
@ -6,6 +6,12 @@ on:
|
||||||
- cron: '51 2 * * 0'
|
- cron: '51 2 * * 0'
|
||||||
jobs:
|
jobs:
|
||||||
images:
|
images:
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
tag:
|
||||||
|
- nixos-22.11
|
||||||
|
- nixos-unstable
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
@ -13,6 +19,6 @@ jobs:
|
||||||
with:
|
with:
|
||||||
nix_path: nixpkgs=https://github.com/NixOS/nixpkgs/archive/nixpkgs-unstable.tar.gz
|
nix_path: nixpkgs=https://github.com/NixOS/nixpkgs/archive/nixpkgs-unstable.tar.gz
|
||||||
- name: Build image
|
- name: Build image
|
||||||
run: ./build-images.sh
|
run: ./build-images.sh "${{matrix.tag}}"
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
18
.github/workflows/update-flake-lock.yml
vendored
Normal file
18
.github/workflows/update-flake-lock.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
name: update-flake-lock
|
||||||
|
on:
|
||||||
|
workflow_dispatch: # allows manual triggering
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 * * 1,4' # Run twice a week
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
lockfile:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Install Nix
|
||||||
|
uses: cachix/install-nix-action@v18
|
||||||
|
- name: Update flake.lock
|
||||||
|
uses: DeterminateSystems/update-flake-lock@v14
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
|
14
.mergify.yml
Normal file
14
.mergify.yml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
pull_request_rules:
|
||||||
|
- name: automatic merge on CI success
|
||||||
|
conditions:
|
||||||
|
- check-success=Evaluate flake.nix
|
||||||
|
- check-success=package kexec-installer-nixos-2211 [x86_64-linux]
|
||||||
|
- check-success=package kexec-installer-nixos-unstable [x86_64-linux]
|
||||||
|
- check-success=package netboot-nixos-unstable [x86_64-linux]
|
||||||
|
- check-success=check kexec-installer-unstable [x86_64-linux]
|
||||||
|
- check-success=package netboot-nixos-nixos-2211 [x86_64-linux]
|
||||||
|
- author=nix-eval-jobs-bot
|
||||||
|
actions:
|
||||||
|
merge:
|
||||||
|
method: merge
|
||||||
|
delete_head_branch: {}
|
Loading…
Reference in a new issue