Skip to content
This repository was archived by the owner on Sep 22, 2025. It is now read-only.

Commit 33ea873

Browse files
authored
Add archival notice to README
1 parent 344a92d commit 33ea873

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
# ⚠️ Archival notice
2+
3+
Due to the lack of time we could allocate to this repo, we've decided to archive it.
4+
5+
You can use [`steve-todorov`'s version](https://github.com/steve-todorov/oidc-debugger-action/blob/f9915fe9dc64133704c072eb59436373c23e9fdd/action.yml) instead.
6+
7+
If you want just the code ([reference](https://github.com/github/actions-oidc-debugger/issues/30#issuecomment-3169059282), thanks again to `steve-todorov`):
8+
```yaml
9+
- name: Show OIDC claims (right before assume)
10+
env:
11+
AUDIENCE: "sts.amazonaws.com"
12+
run: |
13+
TOKEN_JSON=$(curl -s -H "Authorization: bearer $ACTIONS_ID_TOKEN_REQUEST_TOKEN" "$ACTIONS_ID_TOKEN_REQUEST_URL&audience=$AUDIENCE")
14+
ID_TOKEN=$(echo "$TOKEN_JSON" | jq -r .value)
15+
echo "$ID_TOKEN" | awk -F. '{print $2}' | base64 -d 2>/dev/null | jq -r
16+
```
17+
18+
---
19+
120
# actions-oidc-debugger
221
322
This action requests a JWT and prints the claims included within the JWT received from GitHub Actions.

0 commit comments

Comments
 (0)