From c08b2635640d6bd4645323390d937815563e73ba Mon Sep 17 00:00:00 2001 From: mintaka Date: Mon, 7 Sep 2026 23:04:39 -0400 Subject: [PATCH] feat(tools): mint the live-oracle Linear token with app:assignable (RIG-3299) --- tools/forge-linear-token/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/forge-linear-token/index.ts b/tools/forge-linear-token/index.ts index 014aa21b0..c32a6d34b 100644 --- a/tools/forge-linear-token/index.ts +++ b/tools/forge-linear-token/index.ts @@ -34,8 +34,8 @@ export interface AppTokenCredentials { /** Linear's OAuth token endpoint. */ export const TOKEN_URL = "https://api.linear.app/oauth/token"; -/** The scopes the live-oracle's Linear legs need (read + write into TEST). */ -export const SCOPES = "read,write"; +/** The scopes the live-oracle's Linear legs need (read + write + app assignment into TEST). */ +export const SCOPES = "read,write,app:assignable"; /** The two custodied client-credential Actions secrets this helper reads. */ export const ENV_CLIENT_ID = "LINEAR_FORGE_CLIENT_ID";