Compare commits

...

2 commits

Author SHA1 Message Date
f3168cea0f
ci: trigger on prs
All checks were successful
/ check (pull_request) Successful in 3m49s
/ check (push) Successful in 1m35s
2025-03-19 18:14:22 +01:00
00a797fd09
services/forgejo-runner: add nix to path 2025-03-19 18:10:16 +01:00
2 changed files with 13 additions and 2 deletions

View file

@ -1,4 +1,7 @@
on: [push]
on:
push:
pull_request:
types: [opened, synchronize, reopened]
jobs:
check:

View file

@ -5,7 +5,12 @@
"youko"
];
config =
{ config, pkgs, ... }:
{
config,
lib,
pkgs,
...
}:
{
age.secrets.forgejo-runner-token.file = ../secrets/forgejo-token.age;
@ -19,6 +24,9 @@
settings = {
container.network = "bridge";
};
hostPackages = lib.mkOptionDefault [
pkgs.nix
];
labels = [
"ubuntu-latest:docker://node:16-bullseye"
"ubuntu-22.04:docker://node:16-bullseye"