There was an error while loading. Please reload this page.
1 parent 47d7d96 commit 2f44219Copy full SHA for 2f44219
.github/workflows/claude_oauth.yml
@@ -0,0 +1,21 @@
1
+name: Claude OAuth
2
+
3
+on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ code:
7
+ description: 'Authorization code (leave empty for step 1)'
8
+ required: false
9
10
+permissions:
11
+ actions: write # Required for cache management
12
+ contents: read # Required for basic repository access
13
14
+jobs:
15
+ auth:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: grll/claude-code-login@v1
19
+ with:
20
+ code: ${{ inputs.code }}
21
+ secrets_admin_pat: ${{ secrets.SECRETS_ADMIN_PAT }}
0 commit comments