-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into bug/backup
# Conflicts: # README.md # docker/backup/Dockerfile
- Loading branch information
Showing
79 changed files
with
2,617 additions
and
2,597 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
name: 'Check Java files with CheckStyle' | ||
name: "Check Java files with CheckStyle" | ||
on: | ||
pull_request: | ||
paths: | ||
- '**/*.java' | ||
- "**/*.java" | ||
|
||
jobs: | ||
checkstyle: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup Maven | ||
uses: s4u/setup-maven-action@v1.13.0 | ||
uses: s4u/setup-maven-action@v1.14.0 | ||
- name: Run CheckStyle | ||
uses: nikitasavinov/checkstyle-action@master | ||
with: | ||
level: error | ||
fail_on_error: true | ||
workdir: './src' | ||
checkstyle_config: './checkstyle.xml' | ||
workdir: "./src" | ||
checkstyle_config: "./checkstyle.xml" | ||
github_token: ${{ secrets.API_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: 'Prepare and create new tag' | ||
name: "Prepare and create new tag" | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
|
@@ -16,16 +16,16 @@ jobs: | |
- name: Validate inputs | ||
run: echo "${{ github.event.inputs.version }}" | grep -E "^[0-9]+\.[0-9]+\.[0-9]+$" | ||
- name: Setup Maven | ||
uses: s4u/setup-maven-action@v1.13.0 | ||
uses: s4u/setup-maven-action@v1.14.0 | ||
with: | ||
checkout-token: ${{ secrets.API_TOKEN }} | ||
checkout-persist-credentials: true | ||
- name: Setup Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '18' | ||
cache: 'npm' | ||
cache-dependency-path: 'package-lock.json' | ||
node-version: "18" | ||
cache: "npm" | ||
cache-dependency-path: "package-lock.json" | ||
- name: Import GPG key | ||
uses: crazy-max/ghaction-import-gpg@v6 | ||
with: | ||
|
@@ -41,9 +41,9 @@ jobs: | |
uses: EndBug/add-and-commit@v9 | ||
with: | ||
add: '[ "pom.xml", "package.json", "package-lock.json" ]' | ||
commit: '-S' | ||
author_name: 'seart-bot' | ||
author_email: '[email protected]' | ||
message: 'New release: ${{ github.event.inputs.version }}' | ||
tag: 'v${{ github.event.inputs.version }} --force' | ||
tag_push: '--force' | ||
commit: "-S" | ||
author_name: "seart-bot" | ||
author_email: "[email protected]" | ||
message: "New release: ${{ github.event.inputs.version }}" | ||
tag: "v${{ github.event.inputs.version }} --force" | ||
tag_push: "--force" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
npm run format |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,4 @@ | ||
{ | ||
"default": true, | ||
"MD013": { | ||
"line_length": 120, | ||
"tables": false | ||
} | ||
"extends": "markdownlint/style/prettier" | ||
} |
Oops, something went wrong.