Compare commits

...

4 commits

Author SHA1 Message Date
cc504b8ec7 chore: Implement the action in its own repo
Some checks failed
Claude PR Review / claude (pull_request) Failing after 9s
2025-06-02 08:20:49 +02:00
131b83733b idk 2025-06-02 08:19:05 +02:00
7984d3c7fa
Merge pull request 'chore: Configure Renovate' (#2) from renovate/configure into main
Reviewed-on: #2
2025-06-02 06:09:45 +00:00
348ccea655
chore(deps): add renovate.json 2025-06-02 06:01:49 +00:00
3 changed files with 22 additions and 8 deletions

View file

@ -0,0 +1,16 @@
name: Claude PR Review
on:
pull_request:
types: [opened, synchronize]
jobs:
claude:
runs-on: ubuntu-latest
steps:
- name: Claude
uses: https://git.kjan.de/actions/claude-pr-review@main
with:
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
GITEA_URL: ${{ secrets._GITEA_URL }}
GITEA_CLAUDE_TOKEN: ${{ secrets._GITEA_CLAUDE_TOKEN }}

View file

@ -47,14 +47,6 @@ runs:
GITEA_URL: ${{ inputs.GITEA_URL }}
GITEA_TOKEN: ${{ inputs.GITEA_CLAUDE_TOKEN }}
run: |
if [ -z "$GITEA_URL" ]; then
echo "Error: GITEA_URL secret is not set."
exit 1
fi
if [ -z "$GITEA_TOKEN" ]; then
echo "Error: GITEA_TOKEN secret is not set."
exit 1
fi
tea login add --name mygitea --url "$GITEA_URL" --token "$GITEA_TOKEN" --insecure ${{ startsWith(secrets._GITEA_URL, 'http://') || '' }}
- name: Install bun

6
renovate.json Normal file
View file

@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>Renovate/renovate-config"
]
}