Skip to content

Commit a4f9f45

Browse files
authored
Add license workflows (#10)
1 parent 1eb37ee commit a4f9f45

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

.github/workflows/license.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Check Licenses
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- 'main'
7+
issue_comment:
8+
types: [created]
9+
10+
jobs:
11+
license:
12+
uses: eclipse-set/build/.github/workflows/dash.yml@main
13+
permissions:
14+
contents: write
15+
issues: write
16+
pull-requests: write
17+
with:
18+
pom: java/pom.xml
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Update DEPENDENCIES
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- release/*
8+
9+
jobs:
10+
dependencies:
11+
uses: eclipse-set/build/.github/workflows/update-dependencies.yml@main
12+
permissions:
13+
contents: write
14+
with:
15+
pom: java/pom.xml

0 commit comments

Comments
 (0)