An Action for printing OIDC claims in GitHub Actions.
Перейти к файлу
hosom 6c346898dd
Add action-test.yml
2022-05-02 13:09:16 -04:00
.devcontainer Initial import of code for actions 2022-05-02 12:55:26 -04:00
.github/workflows Add action-test.yml 2022-05-02 13:09:16 -04:00
actionsoidc Initial import of code for actions 2022-05-02 12:55:26 -04:00
cmd Initial import of code for actions 2022-05-02 12:55:26 -04:00
vendor Initial import of code for actions 2022-05-02 12:55:26 -04:00
.gitignore Initial commit 2022-05-02 12:50:43 -04:00
Dockerfile Initial import of code for actions 2022-05-02 12:55:26 -04:00
README.md Update README.md 2022-05-02 13:00:28 -04:00
action.yml Initial import of code for actions 2022-05-02 12:55:26 -04:00
entrypoint.sh Initial import of code for actions 2022-05-02 12:55:26 -04:00
go.mod Initial import of code for actions 2022-05-02 12:55:26 -04:00
go.sum Initial import of code for actions 2022-05-02 12:55:26 -04:00

README.md

actions-oidc-debugger

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

Usage


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: Checkout
        uses: actions/checkout@v3
      - name: Debug OIDC Claims
        uses: github/actions-oidc-debugger@v1
        with:
          audience: 'https://github.com/github