We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If I use this I'm getting error like a json web token could not be decoded
id: generate-token
uses: tibdex/github-app-token@v1.8.2
with:
app_id: ${{ secrets.sca_github_swaweb_APP_ID}}
private_key: ${{ secrets.sca_github_swaweb_PRIVATE_KEY }}
name: Token
run:
echo "${{ steps.generate-token.outputs.token }}"
name: Get Installation ID
uses: octokit/request-action@v2.x
id: getInstallationID
token: ${{ steps.generate-token.outputs.token }}
route: GET /repos/{owner}/{repo}/installation
run: |
owner: ${{github.event.repository.owner.login}}
repo: ${{github.event.repository.name}}
name: Id
echo "${{ steps.getInstallationID.outputs.installation_id }}"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If I use this I'm getting error like a json web token could not be decoded
id: generate-token
uses: tibdex/github-app-token@v1.8.2
with:
app_id: ${{ secrets.sca_github_swaweb_APP_ID}}
private_key: ${{ secrets.sca_github_swaweb_PRIVATE_KEY }}
name: Token
run:
echo "${{ steps.generate-token.outputs.token }}"
name: Get Installation ID
uses: octokit/request-action@v2.x
id: getInstallationID
with:
token: ${{ steps.generate-token.outputs.token }}
route: GET /repos/{owner}/{repo}/installation
run: |
owner: ${{github.event.repository.owner.login}}
repo: ${{github.event.repository.name}}
name: Id
echo "${{ steps.getInstallationID.outputs.installation_id }}"
The text was updated successfully, but these errors were encountered: