Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We are unable to create service/bot accounts within our Enterprise. We would really like the option to be able to use a GitHub app for authentication.
I created an example of how this would work below:-
- uses: actions/checkout@v2 with: repository: <org>/github-actions github_app_id: ${{ secrets.APP_ID }} github_app_key: ${{ secrets.APP_KEY }} path: .github/actions
This is our current workaround but we would prefer to remove the generate token step
generate token
- name: Generate token id: generate_token uses: tibdex/github-app-token@v1 with: app_id: ${{ secrets.APP_ID }} private_key: ${{ secrets.APP_KEY }} - name: Checkout action uses: actions/checkout@v2 with: repository: <org>/github-actions token: ${{ steps.generate_token.outputs.token }} path: .github/actions
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
We are unable to create service/bot accounts within our Enterprise.
We would really like the option to be able to use a GitHub app for authentication.
I created an example of how this would work below:-
This is our current workaround but we would prefer to remove the
generate tokenstepThe text was updated successfully, but these errors were encountered: