-
Notifications
You must be signed in to change notification settings - Fork 843
Description
Automated workflow fix: replace
uns-on: ubuntu-slim with
uns-on: ubuntu-latest in the activation job.
Patch:
`diff
From 36e1b91 Mon Sep 17 00:00:00 2001
From: Rigohl 213460755+Rigohl@users.noreply.github.com
Date: Wed, 11 Feb 2026 11:55:26 -0600
Subject: [PATCH] ci: use ubuntu-latest for issue triage activation job
.github/workflows/issue-triage.lock.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/issue-triage.lock.yml b/.github/workflows/issue-triage.lock.yml
index 22c6e02..43073e7 100644
--- a/.github/workflows/issue-triage.lock.yml
+++ b/.github/workflows/issue-triage.lock.yml
@@ -42,7 +42,7 @@ run-name: "Issue Triage Agent"
jobs:
activation:
- runs-on: ubuntu-slim
- runs-on: ubuntu-latest
permissions:
contents: read
outputs:
--
2.53.0.windows.1
`
Note: I attempted to push a branch and open a PR automatically, but the provided Personal Access Token lacks the workflow scope required to update .github/workflows/*. If you prefer, provide a PAT with workflow scope and I will open a PR automatically. Otherwise, please apply this patch or I can create a PR if you grant push rights.
Automated by GitHub Copilot (Rigohl)