Skip to content
Open

Test #488

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Are you looking forward to learn Jenkins right from Zero(installation) to Hero(Build end to end pipelines)? then you are at the right place.

## Installation on EC2 Instance
### Installation on EC2 Instance
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Heading level now violates MD001 – revert to H2 or insert an H2 parent

Dropping straight from # (H1) to ### (H3) skips a level and triggers markdown-lint rule MD001.
Unless there is an intervening H2 that was removed in a different file, switch this back to H2 or introduce an H2 section between.

-### Installation on EC2 Instance
+## Installation on EC2 Instance
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
### Installation on EC2 Instance
## Installation on EC2 Instance
🧰 Tools
🪛 markdownlint-cli2 (0.17.2)

5-5: Heading levels should only increment by one level at a time
Expected: h2; Actual: h3

(MD001, heading-increment)

🤖 Prompt for AI Agents
In README.md at line 5, the heading level jumps from H1 directly to H3,
violating markdown-lint rule MD001. Change the heading from ### (H3) to ## (H2)
to maintain proper heading hierarchy or add an appropriate H2 heading above it
if needed.


YouTube Video ->
https://www.youtube.com/watch?v=zZfhAXfBvVA&list=RDCMUCnnQ3ybuyFdzvgv2Ky5jnAA&index=1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pipeline {
}
stage('Static Code Analysis') {
environment {
SONAR_URL = "http://34.201.116.83:9000"
SONAR_URL = "http://35.154.240.247:9000"
}
steps {
withCredentials([string(credentialsId: 'sonarqube', variable: 'SONAR_AUTH_TOKEN')]) {
Expand Down
1 change: 1 addition & 0 deletions my-first-pipeline/README.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# A simple jenkins pipeline to verify if the docker slave configuration is working as expected.
will fork