Skip to content

Commit aeb2323

Browse files
committed
Merge changes
2 parents 884fa29 + 25aaa6e commit aeb2323

File tree

63 files changed

+4409
-2301
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+4409
-2301
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @DenizAltunkapan @yanglbme @vil02 @BamaCharanChhandogi @alxkm @siriak
1+
* @DenizAltunkapan @yanglbme @vil02 @alxkm

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: Build
22
on: [push, pull_request]
33

4+
permissions:
5+
contents: read
6+
47
jobs:
58
build:
69
runs-on: ubuntu-latest

.github/workflows/clang-format-lint.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ on:
33
push: {}
44
pull_request: {}
55

6+
permissions:
7+
contents: read
8+
69
jobs:
710
build:
811
runs-on: ubuntu-latest

.github/workflows/codeql.yml

Lines changed: 26 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,9 @@ on:
1010
schedule:
1111
- cron: '53 3 * * 0'
1212

13-
env:
14-
LANGUAGE: 'java-kotlin'
15-
1613
jobs:
17-
analyze:
18-
name: Analyze
14+
analyzeJava:
15+
name: AnalyzeJava
1916
runs-on: 'ubuntu-latest'
2017
permissions:
2118
actions: read
@@ -35,13 +32,35 @@ jobs:
3532
- name: Initialize CodeQL
3633
uses: github/codeql-action/init@v3
3734
with:
38-
languages: ${{ env.LANGUAGE }}
35+
languages: 'java-kotlin'
3936

4037
- name: Build
4138
run: mvn --batch-mode --update-snapshots verify
4239

4340
- name: Perform CodeQL Analysis
4441
uses: github/codeql-action/analyze@v3
4542
with:
46-
category: "/language:${{env.LANGUAGE}}"
43+
category: "/language:java-kotlin"
44+
45+
analyzeActions:
46+
name: AnalyzeActions
47+
runs-on: 'ubuntu-latest'
48+
permissions:
49+
actions: read
50+
contents: read
51+
security-events: write
52+
53+
steps:
54+
- name: Checkout repository
55+
uses: actions/checkout@v4
56+
57+
- name: Initialize CodeQL
58+
uses: github/codeql-action/init@v3
59+
with:
60+
languages: 'actions'
61+
62+
- name: Perform CodeQL Analysis
63+
uses: github/codeql-action/analyze@v3
64+
with:
65+
category: "/language:actions"
4766
...

.github/workflows/infer.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ name: Infer
88
- master
99
pull_request:
1010

11+
permissions:
12+
contents: read
13+
1114
jobs:
1215
run_infer:
1316
runs-on: ubuntu-latest

.github/workflows/project_structure.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ name: ProjectStructure
88
- master
99
pull_request:
1010

11+
permissions:
12+
contents: read
13+
1114
jobs:
1215
check_structure:
1316
runs-on: ubuntu-latest

.github/workflows/stale.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,13 @@ name: 'Close stale issues and PRs'
22
on:
33
schedule:
44
- cron: '0 0 * * *'
5+
permissions:
6+
contents: read
57
jobs:
68
stale:
9+
permissions:
10+
issues: write
11+
pull-requests: write
712
runs-on: ubuntu-latest
813
steps:
914
- uses: actions/stale@v9
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Generate Directory Markdown
2+
3+
on:
4+
push:
5+
branches: [master]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: write
10+
pull-requests: write
11+
12+
jobs:
13+
generate-directory:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout Repository
17+
uses: actions/checkout@v4
18+
19+
- name: Run Directory Tree Generator
20+
uses: DenizAltunkapan/directory-tree-generator@v2
21+
with:
22+
path: src
23+
extensions: .java
24+
show-extensions: false
25+
26+
- name: Commit changes
27+
run: |
28+
git config --global user.name "$GITHUB_ACTOR"
29+
git config --global user.email "[email protected]"
30+
git add DIRECTORY.md
31+
git diff --cached --quiet || git commit -m "Update DIRECTORY.md"
32+
33+
- name: Create Pull Request
34+
uses: peter-evans/create-pull-request@v7
35+
with:
36+
token: ${{ secrets.REPO_SCOPED_TOKEN }}
37+
branch: update-directory
38+
base: master
39+
title: "Update DIRECTORY.md"
40+
body: "Automatically generated update of the directory tree."
41+
commit-message: "Update DIRECTORY.md"
42+
draft: false

.github/workflows/update_directory.yml

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

.gitpod.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM gitpod/workspace-java-21:2025-05-14-07-50-25
1+
FROM gitpod/workspace-java-21:2025-06-18-16-47-14
22

33
ENV LLVM_SCRIPT="tmp_llvm.sh"
44

0 commit comments

Comments
 (0)