From fc0fd5af6f2629e3a30c7a3864358305e3853f85 Mon Sep 17 00:00:00 2001 From: Vladimir Milosevic Date: Fri, 16 Aug 2024 15:10:14 +0000 Subject: [PATCH] Use PERSONAL_ACCESS_TOKEN --- .github/workflows/ttrt-collect.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ttrt-collect.yml b/.github/workflows/ttrt-collect.yml index ee9480dafc..87f3063832 100644 --- a/.github/workflows/ttrt-collect.yml +++ b/.github/workflows/ttrt-collect.yml @@ -13,7 +13,7 @@ jobs: id: get-runners run: | echo "Fetching self-hosted runners..." - response=$(curl -s -w "%{http_code}" -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \ + response=$(curl -s -w "%{http_code}" -H "Authorization: Bearer ${{ secrets.PERSONAL_ACCESS_TOKEN }}" \ -H "Accept: application/vnd.github.v3+json" \ "https://api.github.com/repos/${{ github.repository }}/actions/runners") echo "Response: $response"