Skip to content

Commit c1ed9df

Browse files
committed
Update actions
1 parent 9a7adca commit c1ed9df

File tree

6 files changed

+41
-9
lines changed

6 files changed

+41
-9
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: ⚙️ Claude Auto Review
2+
3+
on:
4+
pull_request:
5+
types: [opened]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
id-token: write
11+
pull-requests: read
12+
13+
jobs:
14+
auto-review:
15+
uses: SocketDev/socket-registry/.github/workflows/claude-auto-review.yml@main
16+
secrets:
17+
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}

.github/workflows/claude.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: ⚙️ Claude Code
2+
3+
on:
4+
issue_comment:
5+
types: [created]
6+
pull_request_review_comment:
7+
types: [created]
8+
issues:
9+
types: [opened, assigned]
10+
pull_request_review:
11+
types: [submitted]
12+
workflow_dispatch:
13+
14+
permissions:
15+
contents: read
16+
id-token: write
17+
issues: write
18+
pull-requests: write
19+
20+
jobs:
21+
claude:
22+
uses: SocketDev/socket-registry/.github/workflows/claude.yml@main
23+
secrets:
24+
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}

.github/workflows/lint.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,3 @@ concurrency:
2121
jobs:
2222
linting:
2323
uses: SocketDev/socket-registry/.github/workflows/lint.yml@main
24-
with:
25-
node-version: '22'

.github/workflows/provenance.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ jobs:
1212
provenance:
1313
uses: SocketDev/socket-registry/.github/workflows/provenance.yml@main
1414
with:
15-
node-version: '22'
1615
package-name: '@socketregistry/packageurl-js'
1716
secrets:
1817
npm_token: ${{ secrets.NPM_TOKEN }}
19-
permissions:
20-
contents: read
21-
id-token: write

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,3 @@ jobs:
2929
with:
3030
node-version: '${{ matrix.node-version }}'
3131
os: ${{ matrix.os }}
32-
timeout-minutes: 10

.github/workflows/types.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,3 @@ concurrency:
2121
jobs:
2222
types:
2323
uses: SocketDev/socket-registry/.github/workflows/types.yml@main
24-
with:
25-
node-version: '22'

0 commit comments

Comments
 (0)