From 832d28031f91678c380cd32fc37a3ce5a8853269 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Catriel=20M=C3=BCller?= Date: Tue, 10 Feb 2026 18:22:04 -0300 Subject: [PATCH] fix: check org member workflow --- .github/workflows/check-org-member.yml | 9 +++++++-- .github/workflows/pr-management.yml | 3 +++ .github/workflows/pr-standards.yml | 3 +++ 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-org-member.yml b/.github/workflows/check-org-member.yml index 3db52685129..51b0b9fbcb3 100644 --- a/.github/workflows/check-org-member.yml +++ b/.github/workflows/check-org-member.yml @@ -6,6 +6,11 @@ on: username: required: true type: string + secrets: + kilo-maintainer-app-id: + required: true + kilo-maintainer-app-secret: + required: true outputs: is-member: description: Whether the user is an org member or kilo-maintainer bot @@ -21,8 +26,8 @@ jobs: id: apptoken uses: actions/create-github-app-token@v2 with: - app-id: ${{ secrets.KILO_MAINTAINER_APP_ID }} - private-key: ${{ secrets.KILO_MAINTAINER_APP_SECRET }} + app-id: ${{ secrets.kilo-maintainer-app-id }} + private-key: ${{ secrets.kilo-maintainer-app-secret }} owner: ${{ github.repository_owner }} - name: Check if author is org member or kilo-maintainer bot diff --git a/.github/workflows/pr-management.yml b/.github/workflows/pr-management.yml index 9ef561454f1..b6748e8b4b6 100644 --- a/.github/workflows/pr-management.yml +++ b/.github/workflows/pr-management.yml @@ -10,6 +10,9 @@ jobs: uses: ./.github/workflows/check-org-member.yml with: username: ${{ github.event.pull_request.user.login }} + secrets: + kilo-maintainer-app-id: ${{ secrets.KILO_MAINTAINER_APP_ID }} + kilo-maintainer-app-secret: ${{ secrets.KILO_MAINTAINER_APP_SECRET }} check-duplicates: needs: check-author diff --git a/.github/workflows/pr-standards.yml b/.github/workflows/pr-standards.yml index a49f7234bcd..69452655b54 100644 --- a/.github/workflows/pr-standards.yml +++ b/.github/workflows/pr-standards.yml @@ -10,6 +10,9 @@ jobs: uses: ./.github/workflows/check-org-member.yml with: username: ${{ github.event.pull_request.user.login }} + secrets: + kilo-maintainer-app-id: ${{ secrets.KILO_MAINTAINER_APP_ID }} + kilo-maintainer-app-secret: ${{ secrets.KILO_MAINTAINER_APP_SECRET }} check-standards: needs: check-author