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 6172d30 commit 362f2e5Copy full SHA for 362f2e5
.github/workflows/claude.yml
@@ -23,15 +23,23 @@ jobs:
23
pull-requests: read
24
issues: read
25
id-token: write
26
+ packages: read
27
steps:
28
- name: Checkout repository
29
uses: actions/checkout@v4
30
with:
31
fetch-depth: 1
32
33
+ - name: Login to GitHub Container Registry
34
+ uses: docker/login-action@v3
35
+ with:
36
+ registry: ghcr.io
37
+ username: ${{ github.actor }}
38
+ password: ${{ secrets.GH_TOKEN }}
39
+
40
- name: Run Claude Code
41
id: claude
- uses: ./.github/actions/claude-code-action
42
+ uses: ghcr.io/mervinpraison/praisonai-claudecode:latest
43
44
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
45
github_token: ${{ secrets.GH_TOKEN }}
0 commit comments