-
Notifications
You must be signed in to change notification settings - Fork 0
Add remote repository URL #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| git@github.com:JSTONE1111/rippled.git | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove this file — it serves no purpose and appears to be an accidental commit. A file whose name and sole content is a git SSH remote URL ( 🤖 Prompt for AI Agents |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| { | ||
| "name": "xrpl-dev-boilerplate", | ||
| "version": "1.0.0", | ||
| "description": "XRPL dev boilerplate — wallet generation, balance, payment example (Testnet)", | ||
| "main": "index.js", | ||
| "scripts": { | ||
| "start": "node index.js", | ||
| "dev": "NODE_ENV=development nodemon index.js" | ||
| }, | ||
| "dependencies": { | ||
| "body-parser": "^1.20.2", | ||
| "dotenv": "^16.3.1", | ||
| "express": "^4.18.2", | ||
| "xrpl": "^4.4.0" | ||
| } | ||
| } | ||
|
Comment on lines
+1
to
+16
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This
Additionally, the 🤖 Prompt for AI Agents |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Critical: Malformed YAML breaks the entire Windows CI workflow.
Line 105 replaces the valid
with:mapping with a Markdown badge link, producing invalid YAML. Theactionlintstatic analysis tool also flags this:could not parse as YAML: could not find expected ':'. This will prevent the workflow from being parsed by GitHub Actions, so no Windows CI jobs will run.🐛 Proposed fix — restore valid YAML
📝 Committable suggestion
🧰 Tools
🪛 actionlint (1.7.10)
[error] 105-105: could not parse as YAML: could not find expected ':'
(syntax-check)
🪛 YAMLlint (1.38.0)
[error] 107-107: syntax error: could not find expected ':'
(syntax)
🤖 Prompt for AI Agents