Skip to content

Commit ed81a5f

Browse files
committed
Merge pull request 'ci/git-actions' from ci/git-actions into master
Reviewed-on: https://git.onlyoffice.com/ONLYOFFICE/onlyoffice-docspace-monday/pulls/9
2 parents b44e273 + 10809e8 commit ed81a5f

38 files changed

+60
-6296
lines changed

.check-licenses.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
- - :approve
3+
- antlr-runtime
4+
- :who:
5+
:why: BSD
6+
:versions: []
7+
:when: 2025-11-11 07:21:45.334922900 Z
8+
- - :ignore
9+
- netty-resolver-dns-native-macos
10+
- :who:
11+
:why: Apache License, Version 2.0
12+
:versions: []
13+
:when: 2025-11-11 07:21:45.334922900 Z
14+
- - :ignore
15+
- netty-transport-native-epoll
16+
- :who:
17+
:why: Apache License, Version 2.0
18+
:versions: []
19+
:when: 2025-11-11 07:22:44.357597700 Z
20+
- - :ignore
21+
- netty-incubator-codec-native-quic
22+
- :who:
23+
:why: Apache License, Version 2.0
24+
:versions: []
25+
:when: 2025-11-11 07:22:44.357597700 Z

.github/workflows/licenses.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Licenses
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches: [master, develop]
7+
pull_request:
8+
branches: [master, develop]
9+
10+
jobs:
11+
licences:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout Repository
15+
uses: actions/checkout@v4
16+
- name: Install Java 21
17+
uses: actions/setup-java@v4
18+
with:
19+
distribution: 'temurin'
20+
java-version: '21'
21+
- name: Delete Maven Wrappers
22+
run: |
23+
./mvnw install -DskipTests
24+
rm mvnw
25+
rm mvnw.cmd
26+
- name: Get Repository License
27+
id: license
28+
run: |
29+
license="${{ (github.event.repository.license.spdx_id) || (github.event.repository.licenses[0]) }}"
30+
echo "License detected: $license"
31+
echo "license=$license" >> $GITHUB_OUTPUT
32+
- name: Check Licenses
33+
uses: ONLYOFFICE/check-licenses@v1
34+
with:
35+
project_license: ${{ steps.license.outputs.license }}

3rd-Party.license

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

0 commit comments

Comments
 (0)