fix: check org member workflow

This commit is contained in:
Catriel Müller
2026-02-10 18:22:04 -03:00
parent 83b4c4da3f
commit 832d28031f
3 changed files with 13 additions and 2 deletions
+7 -2
View File
@@ -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
+3
View File
@@ -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
+3
View File
@@ -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