-
Notifications
You must be signed in to change notification settings - Fork 397
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'future3/develop' into future3/merge-hotfix-3.5.3
- Loading branch information
Showing
75 changed files
with
1,721 additions
and
837 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
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Markdown Linting | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'future3/**' | ||
paths: | ||
- '**.md' | ||
pull_request: | ||
branches: | ||
- 'future3/**' | ||
paths: | ||
- '**.md' | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Linting markdown | ||
uses: DavidAnson/markdownlint-cli2-action@v15 | ||
with: | ||
config: .markdownlint-cli2.yaml | ||
#continue-on-error: true |
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 |
---|---|---|
|
@@ -134,11 +134,11 @@ jobs: | |
BASE_TEST_IMAGE=${{ steps.vars.outputs.image_tag_name_local_base }} | ||
- name: Artifact Upload Docker Image | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{ steps.vars.outputs.image_file_name }} | ||
path: ${{ steps.vars.outputs.image_file_path }} | ||
retention-days: 1 | ||
retention-days: 2 | ||
|
||
|
||
# Run tests with build image | ||
|
@@ -159,7 +159,7 @@ jobs: | |
uses: docker/[email protected] | ||
|
||
- name: Artifact Download Docker Image | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: ${{ needs.build.outputs.image_file_name }} | ||
|
||
|
@@ -179,13 +179,14 @@ jobs: | |
# cleanup after test execution | ||
cleanup: | ||
# run only if tests didn't fail: keep the artifact to make job reruns possible | ||
if: ${{ !failure() }} | ||
needs: [build, test] | ||
runs-on: ${{ inputs.runs_on }} | ||
|
||
steps: | ||
- name: Artifact Delete Docker Image | ||
uses: geekyeggo/delete-artifact@v2 | ||
with: | ||
name: ${{ needs.build.outputs.image_file_name }} | ||
# run only if tests didn't fail: keep the artifact to make job reruns possible | ||
if: ${{ !failure() }} | ||
needs: [build, test] | ||
runs-on: ${{ inputs.runs_on }} | ||
|
||
steps: | ||
- name: Artifact Delete Docker Image | ||
uses: geekyeggo/delete-artifact@v5 | ||
with: | ||
name: ${{ needs.build.outputs.image_file_name }} | ||
failOnError: false |
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,57 @@ | ||
# | ||
# markdownlint-cli2 configuration, see https://github.com/DavidAnson/markdownlint-cli2?tab=readme-ov-file#configuration | ||
# | ||
|
||
# rules, see https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md | ||
config: | ||
line-length: false | ||
# ignore dollar signs | ||
commands-show-output: false | ||
no-trailing-punctuation: false | ||
no-duplicate-heading: | ||
siblings_only: true | ||
# allow some tags we use for formatting | ||
no-inline-html: | ||
allowed_elements: [ "details", "summary" ] | ||
|
||
# Include a custom rule package | ||
#customRules: | ||
# - markdownlint-rule-titlecase | ||
|
||
# Fix no fixable errors | ||
fix: false | ||
|
||
# Define a custom front matter pattern | ||
#frontMatter: "<head>[^]*<\/head>" | ||
|
||
# Define glob expressions to use (only valid at root) | ||
globs: | ||
- "**.md" | ||
|
||
# Define glob expressions to ignore | ||
ignores: | ||
- "documentation/developers/docstring/*" | ||
- "src/**" | ||
|
||
# Use a plugin to recognize math | ||
#markdownItPlugins: | ||
# - | ||
# - "@iktakahiro/markdown-it-katex" | ||
|
||
# Additional paths to resolve module locations from | ||
#modulePaths: | ||
# - "./modules" | ||
|
||
# Enable inline config comments | ||
noInlineConfig: false | ||
|
||
# Disable progress on stdout (only valid at root) | ||
noProgress: true | ||
|
||
# Use a specific formatter (only valid at root) | ||
#outputFormatters: | ||
# - | ||
# - markdownlint-cli2-formatter-default | ||
|
||
# Show found files on stdout (only valid at root) | ||
showFound: true |
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
Oops, something went wrong.