-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #343 from gsmet/various-adjustments
Various adjustments
- Loading branch information
Showing
15 changed files
with
30 additions
and
23 deletions.
There are no files selected for viewing
Binary file added
BIN
+21.5 KB
...modules/ROOT/assets/images/developer-reference/commands-logging-job-summary.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+8.43 KB
docs/modules/ROOT/assets/images/developer-reference/commands-logging-log.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -110,12 +110,14 @@ The next step is to push your GitHub Action to its GitHub repository (GitHub des | |
---- | ||
git init | ||
git add . | ||
git update-index --chmod=+x mvnw <1> | ||
git commit -m "Init the project" | ||
git branch -M main | ||
git remote add origin [email protected]:my/action-github-repository.git <1> | ||
git remote add origin [email protected]:my/action-github-repository.git <2> | ||
git push -u origin main | ||
---- | ||
<1> Replace `my/action-github-repository` with the full name of the repository you created to host the GitHub Action. | ||
<1> Make sure `mvnw` is executable, even if the project is initialized on Windows. | ||
<2> Replace `my/action-github-repository` with the full name of the repository you created to host the GitHub Action. | ||
|
||
[WARNING] | ||
==== | ||
|
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
2 changes: 1 addition & 1 deletion
2
...s/__snapshots__/CodestartKotlinTest/testContent/src_main_resources_application.properties
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,2 +1,2 @@ | ||
quarkus.banner.enabled=false | ||
quarkus.log.level=SEVERE | ||
quarkus.log.category."io.quarkus".level=WARN |
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
2 changes: 1 addition & 1 deletion
2
...sources/__snapshots__/CodestartTest/testContent/src_main_resources_application.properties
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,2 +1,2 @@ | ||
quarkus.banner.enabled=false | ||
quarkus.log.level=SEVERE | ||
quarkus.log.category."io.quarkus".level=WARN |
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
4 changes: 3 additions & 1 deletion
4
...tarts/quarkus/quarkiverse-github-action-codestart/base/src/main/resources/application.yml
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,5 +1,7 @@ | ||
quarkus: | ||
log: | ||
level: SEVERE | ||
category: | ||
"io.quarkus": | ||
level: WARN | ||
banner: | ||
enabled: false |