An open API service indexing awesome lists of open source software.

https://github.com/github/actions-oidc-debugger

An Action for printing OIDC claims in GitHub Actions.
https://github.com/github/actions-oidc-debugger

Last synced: 11 months ago
JSON representation

An Action for printing OIDC claims in GitHub Actions.

Awesome Lists containing this project

README

          

# actions-oidc-debugger

This action requests a JWT and prints the claims included within the JWT received from GitHub Actions.

## How to use this Action

Here's an example of how to use that action:

```yaml

on: [pull_request]

jobs:
oidc_debug_test:
permissions:
contents: read
id-token: write
runs-on: ubuntu-latest
name: A test of the oidc debugger
steps:
- name: Debug OIDC Claims
uses: github/actions-oidc-debugger@main
with:
audience: '${{ github.server_url }}/${{ github.repository_owner }}'
```