Skip to content

Commit 3d60237

Browse files
authored
Merge branch 'develop' into fix_threadQuery_test
2 parents c68a47c + 0fd888d commit 3d60237

File tree

154 files changed

+5103
-1473
lines changed

Some content is hidden

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

154 files changed

+5103
-1473
lines changed

.gitattributes

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

.github/workflows/dependabot.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ on:
44
pull_request:
55
types: [ opened, reopened, synchronize ]
66

7-
permissions:
8-
contents: write
9-
pull-requests: write
10-
117
jobs:
128
ApproveAndMerge:
139
name: Auto approve Dependabot PRs

.github/workflows/deploy-branch-snapshot.yml

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

.github/workflows/deploy-pr-preview.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: actions/checkout@v4
1616

1717
- name: Deploy SNAPSHOT version
18-
uses: secure-software-engineering/actions/deployment/maven-deployment@maven-central-deploy
18+
uses: secure-software-engineering/actions/deployment/maven-deployment@develop
1919
with:
2020
java-distribution: adopt
2121
java-version: 11
@@ -24,5 +24,5 @@ jobs:
2424
server-password: ${{ secrets.MAVEN_CENTRAL_TOKEN }}
2525
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
2626
gpg-passphrase: ${{ secrets.GPG_PRIVATE_KEY_PASSPHRASE }}
27-
mvn-cli-args: '-DskipTests -Dmaven.javadoc.skip=true -Pdeployment'
27+
mvn-cli-args: '-DskipTests -Pdeployment'
2828
deploy-mode: snapshot

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/checkout@v4
1717

1818
- name: Deploy version
19-
uses: secure-software-engineering/actions/deployment/maven-deployment@maven-central-deploy
19+
uses: secure-software-engineering/actions/deployment/maven-deployment@develop
2020
with:
2121
java-distribution: adopt
2222
java-version: 11
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Documentation Deployment
2+
3+
on:
4+
push:
5+
branches:
6+
- develop
7+
tags:
8+
- '*'
9+
10+
concurrency:
11+
group: gh-pages
12+
13+
jobs:
14+
deploy-doc:
15+
name: Deploy Stable Documentation
16+
runs-on: ubuntu-latest
17+
permissions:
18+
contents: write
19+
steps:
20+
- name: Checkout Repository
21+
uses: actions/checkout@v4
22+
with:
23+
fetch-depth: 0 # mike needs full history to push to gh-pages
24+
25+
- name: Deploy Documentation
26+
uses: secure-software-engineering/actions/documentation/deployment@develop
27+
with:
28+
version: ${{ github.ref_name }}
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Documentation Preview
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- closed
8+
- synchronize
9+
- reopened
10+
paths:
11+
- mkdocs.yml
12+
- docs/**
13+
- .github/workflows/documentation-pr-preview.yml
14+
15+
concurrency:
16+
group: gh-pages
17+
18+
jobs:
19+
deploy-preview:
20+
name: Preview documentation
21+
runs-on: ubuntu-latest
22+
permissions:
23+
contents: write
24+
pull-requests: write # for posting a comment
25+
26+
steps:
27+
- name: Checkout Repository
28+
uses: actions/checkout@v4
29+
with:
30+
fetch-depth: 0 # mike needs full history to push to gh-pages
31+
32+
- name: Create Documentation Preview
33+
uses: secure-software-engineering/actions/documentation/pr-preview@develop

.github/workflows/formalities.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Codestyle etc.
22

3-
on: [pull_request]
3+
on: [ pull_request ]
44

55
jobs:
66
check-formatting:

.github/workflows/maven.yml

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

0 commit comments

Comments
 (0)