Skip to content

Commit 88f6361

Browse files
committed
fix
1 parent 25fae35 commit 88f6361

File tree

2 files changed

+30
-7
lines changed

2 files changed

+30
-7
lines changed

action.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
name: 'OpenRouter PR Review Action'
2-
description: 'A GitHub Action to review PR diffs, suggest improvements, and scan for vulnerabilities using OpenRouter.'
1+
name: 'DiffGuard AI PR Review'
2+
description: 'Intelligent code review automation using AI to analyze PR diffs, suggest improvements, and scan for vulnerabilities'
3+
author: 'joao'
4+
35
inputs:
46
github_token:
57
description: 'GitHub token for API access'
@@ -22,9 +24,11 @@ inputs:
2224
description: 'Maximum number of tokens in the response'
2325
required: false
2426
default: '2048'
27+
2528
runs:
26-
using: 'node16'
29+
using: 'node20'
2730
main: 'dist/index.js'
31+
2832
branding:
29-
icon: 'eye'
30-
color: 'blue'
33+
icon: 'shield'
34+
color: 'purple'

package.json

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,31 @@
11
{
2-
"name": "openrouter-pr-review-action",
2+
"name": "diffguard",
33
"version": "1.0.0",
4-
"description": "GitHub Action for PR review using OpenRouter AI models",
4+
"description": "DiffGuard AI PR Review - Intelligent code review automation using AI",
55
"main": "dist/index.js",
66
"scripts": {
77
"build": "ncc build src/index.js -o dist",
88
"prepare": "npm run build"
99
},
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/joao/diffguard.git"
13+
},
14+
"keywords": [
15+
"github-action",
16+
"code-review",
17+
"ai",
18+
"diffguard",
19+
"pr-review",
20+
"automation",
21+
"static-analysis"
22+
],
23+
"author": "joao",
24+
"license": "MIT",
25+
"bugs": {
26+
"url": "https://github.com/joao/diffguard/issues"
27+
},
28+
"homepage": "https://github.com/joao/diffguard#readme",
1029
"dependencies": {
1130
"@actions/core": "^1.10.0",
1231
"@actions/github": "^5.1.1",

0 commit comments

Comments
 (0)