From 023c87cb678166a0227abc91d67c185426998985 Mon Sep 17 00:00:00 2001 From: buffet Date: Tue, 7 May 2024 21:35:04 +0200 Subject: [PATCH] feat: rename runners to contain name --- hosts/ami/forgejo-action-runner.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/ami/forgejo-action-runner.nix b/hosts/ami/forgejo-action-runner.nix index 1a94521..4a7298a 100644 --- a/hosts/ami/forgejo-action-runner.nix +++ b/hosts/ami/forgejo-action-runner.nix @@ -16,7 +16,7 @@ in { instances = lib.genAttrs (builtins.genList (n: "runner${builtins.toString n}") numRunners) (name: { enable = true; - name = "runner"; + name = "runner${builtins.toString n}"; url = config.services.forgejo.settings.server.ROOT_URL; tokenFile = config.age.secrets.kitchen-runner-token.path; labels = ["docker" "ubuntu-latest:docker://ghcr.io/catthehacker/ubuntu:act-latest"];