Skip to content

Commit 80306f8

Browse files
committed
update workflows
1 parent af0b1f8 commit 80306f8

4 files changed

Lines changed: 42 additions & 25 deletions

File tree

.github/workflows/build-plugin.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: build-plugin
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
9+
jobs:
10+
build:
11+
uses: consulo/shared-workflows/.github/workflows/build-plugin.yml@master
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Claude PR Review
2+
3+
on:
4+
issue_comment:
5+
types: [created]
6+
pull_request_review_comment:
7+
types: [created]
8+
9+
jobs:
10+
claude:
11+
permissions:
12+
contents: read
13+
pull-requests: write
14+
issues: write
15+
uses: consulo/shared-workflows/.github/workflows/claude-pr-review.yml@master
16+
secrets: inherit

.github/workflows/maven.yaml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.github/workflows/source-sync.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Source sync
2+
3+
on:
4+
push:
5+
branches: [master]
6+
workflow_dispatch: {}
7+
8+
jobs:
9+
sync:
10+
if: ${{ github.repository_owner == 'consulo' }}
11+
permissions:
12+
contents: write
13+
pull-requests: write
14+
uses: consulo/shared-workflows/.github/workflows/source-sync.yml@master
15+
secrets: inherit

0 commit comments

Comments
 (0)