We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7154e1c commit f820c25Copy full SHA for f820c25
.github/workflows/todo.yml
@@ -53,6 +53,14 @@ jobs:
53
# If you plan to run "import all" against history, set fetch-depth: 0
54
fetch-depth: 1
55
56
+ - name: Who am I with this token?
57
+ run: |
58
+ set -euo pipefail
59
+ who=$(curl -s -H "authorization: Bearer ${{ env.GITHUB_TOKEN }}" https://api.github.com/user | jq -r '.login,.type')
60
+ echo "Actor via token: $who"
61
+ env:
62
+ GITHUB_TOKEN: ${{ github.token }}
63
+
64
- name: Run Issue Bot
65
# Pin to the latest release tag instead of @main
66
uses: juulsn/[email protected]
0 commit comments