Skip to content

Commit

Permalink
use real token
Browse files Browse the repository at this point in the history
  • Loading branch information
cgundy committed Dec 16, 2024
1 parent f0b3cc1 commit 7b7ce69
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/python_lint_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,14 @@ jobs:
black reusable_workflows/
flake8 reusable_workflows/
- 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: Run all tests
run: pytest --integration-tests reusable_workflows/
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ steps.app-token.outputs.token }}

0 comments on commit 7b7ce69

Please sign in to comment.