Skip to content

Commit f02c401

Browse files
committed
Sync from monorepo - main
1 parent 61b3c8f commit f02c401

File tree

8 files changed

+133
-0
lines changed

8 files changed

+133
-0
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @ardoco/maintainer
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- OS: [e.g. iOS]
28+
- Browser [e.g. chrome, safari]
29+
- Version [e.g. 22]
30+
31+
**Smartphone (please complete the following information):**
32+
- Device: [e.g. iPhone6]
33+
- OS: [e.g. iOS8.1]
34+
- Browser [e.g. stock browser, safari]
35+
- Version [e.g. 22]
36+
37+
**Additional context**
38+
Add any other context about the problem here.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
day: "wednesday"
8+
time: "11:00"
9+
timezone: "Europe/Berlin"
10+
commit-message:
11+
prefix: "Dependency"
12+
include: "scope"

.github/workflows/format.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Format
2+
3+
on:
4+
pull_request:
5+
branches: [ main ]
6+
7+
# Allows you to run this workflow manually from the Actions tab
8+
workflow_dispatch:
9+
10+
jobs:
11+
format:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v6
16+
with:
17+
submodules: true
18+
fetch-depth: 0
19+
- uses: joshlong/java-version-export-github-action@v28
20+
id: jve
21+
- name: Set up JDK
22+
uses: actions/setup-java@v5
23+
with:
24+
distribution: 'temurin'
25+
java-version: ${{ steps.jve.outputs.java_major_version }}
26+
cache: 'maven'
27+
- name: Format with Spotless in Maven
28+
run: mvn -B spotless:apply --file pom.xml
29+
- name: Commit changes
30+
uses: stefanzweifel/git-auto-commit-action@v7
31+
with:
32+
commit_message: Apply formatting changes

.github/workflows/verify.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Maven Verify
2+
3+
on:
4+
push: # Ignore releases and main dev branch
5+
tags-ignore:
6+
- 'v*'
7+
branches:
8+
- 'main'
9+
pull_request:
10+
types: [opened, synchronize, reopened]
11+
12+
# Allows you to run this workflow manually from the Actions tab
13+
workflow_dispatch:
14+
15+
jobs:
16+
verify:
17+
uses: ardoco/actions/.github/workflows/maven.yml@main
18+
with:
19+
deploy: false
20+
with-submodules: true
21+
runs-on: ubuntu-latest
22+
secrets:
23+
CENTRAL_USER: ""
24+
CENTRAL_TOKEN: ""
25+
GPG_KEY: ""
26+

.mvn/jvm.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-XX:+EnableDynamicAgentLoading -XX:-TieredCompilation -XX:TieredStopAtLevel=1 --add-exports jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED --add-exports jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED --add-exports jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED --add-exports jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED --add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED

.mvn/maven.config

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
-DskipTests=false
2+
-Dnet.bytebuddy.experimental=true
3+
-T1C

0 commit comments

Comments
 (0)