Skip to content

Commit

Permalink
fix(IDX): update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cgundy authored Nov 19, 2024
1 parent 8a560c8 commit 46b0fe8
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/check_cla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ jobs:
outputs:
is_member: ${{ steps.check-membership.outputs.is_member}}
steps:
- uses: actions/create-github-app-token@v1
- name: Create GitHub App Token
uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ vars.CLA_BOT_APP_ID }}
Expand Down Expand Up @@ -48,6 +49,13 @@ jobs:
needs: check-membership
if: ${{ needs.check-membership.outputs.is_member != 'true' && needs.check-membership.result == 'success' }}
steps:
- name: Create GitHub App Token
uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ vars.CLA_BOT_APP_ID }}
private-key: ${{ secrets.CLA_BOT_PRIVATE_KEY }}

- name: Checkout
uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 46b0fe8

Please sign in to comment.