From ccebb2a223f6f62936e26f5379492b199ef02331 Mon Sep 17 00:00:00 2001 From: Herman Slatman Date: Tue, 26 May 2026 12:27:55 +0200 Subject: [PATCH] Fix triage labeling workflow --- .github/workflows/triage.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/triage.yml b/.github/workflows/triage.yml index 9f4b397..5a369c4 100644 --- a/.github/workflows/triage.yml +++ b/.github/workflows/triage.yml @@ -28,8 +28,8 @@ jobs: issues: write steps: - name: Label PR - run: | - gh pr edit ${{ github.event.pull_request.number }} --add-label "needs triage" + run: | # plain GitHub API call replaces "gh pr edit" + gh api --method POST repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/labels --field 'labels[]=needs triage' add-oss-project: name: Add to OSS Triage Project