-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into issue-28443
- Loading branch information
Showing
756 changed files
with
15,866 additions
and
2,950 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -57,7 +57,7 @@ jobs: | |
shell: bash | ||
run: tar -xzf maven-repo.tgz -C ~ | ||
- name: Set up Minikube-Kubernetes | ||
uses: manusa/[email protected].1 | ||
uses: manusa/[email protected].2 | ||
with: | ||
minikube version: v1.16.0 | ||
kubernetes version: ${{ matrix.kubernetes }} | ||
|
@@ -91,7 +91,7 @@ jobs: | |
openshift: | ||
name: OpenShift Integration Tests | ||
needs: cache | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-20.04 | ||
if: "github.repository == 'quarkusio/quarkus' || github.event_name == 'workflow_dispatch'" | ||
strategy: | ||
fail-fast: 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
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,33 @@ | ||
--- | ||
name: Linting with Vale | ||
on: | ||
pull_request: | ||
paths: | ||
- 'docs/src/main/asciidoc/**' | ||
- '.github/workflows/vale.yml' | ||
|
||
concurrency: | ||
group: "workflow = ${{ github.workflow }}, ref = ${{ github.event.ref }}, pr = ${{ github.event.pull_request.id }}" | ||
cancel-in-progress: ${{ github.event_name == 'pull_request' || github.repository != 'quarkusio/quarkus' }} | ||
|
||
jobs: | ||
vale: | ||
name: Linting with Vale | ||
runs-on: ubuntu-latest | ||
permissions: | ||
actions: read | ||
checks: read | ||
contents: read | ||
pull-requests: read | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Vale Linter | ||
uses: errata-ai/vale-action@reviewdog | ||
with: | ||
fail_on_error: false | ||
vale_flags: "--no-exit --config=docs/.vale/vale.ini" | ||
filter_mode: diff_context | ||
files: docs/src/main/asciidoc/ | ||
env: | ||
GITHUB_TOKEN: ${{secrets.GITHUB_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
Oops, something went wrong.