From fa2c0eb7317997fe39f53268d4d5244b13bcd82d Mon Sep 17 00:00:00 2001 From: Ben McNicholl Date: Thu, 14 May 2026 10:21:27 +1000 Subject: [PATCH] fix: uses the mise GH token to avoid rate limits --- ci/src/pipeline.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ci/src/pipeline.ts b/ci/src/pipeline.ts index 4cc1643..4141fb9 100644 --- a/ci/src/pipeline.ts +++ b/ci/src/pipeline.ts @@ -3,11 +3,14 @@ import * as fs from "fs"; import toml from "toml"; const pipeline = new Pipeline(); +pipeline.setSecrets(["MISE_GITHUB_TOKEN"]); + const plugins = [ { "docker#v5.11.0": { image: "buildkite-sdk-tools:latest", "propagate-environment": true, + environment: ["MISE_GITHUB_TOKEN"], }, }, ];