Skip to content
Open
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 .github/workflows/pr-comment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ jobs:
if: ${{ github.event.label.name == 'queued' }} || contains(github.event.comment.body, 're')
runs-on: self-hosted
steps:
- run: "echo Found it!"
- run: "echo Found it!
Copy link

Choose a reason for hiding this comment

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

⚠️ Potential issue

Fix YAML syntax error: Invalid string literal

The current syntax is invalid and will cause the workflow to fail. The newline after the echo command creates an unclosed string literal, resulting in a YAML parsing error.

To fix this, either:

  1. Remove the newline:
-      - run: "echo Found it!
+      - run: "echo Found it!"
  1. Or if you need multiline command, use proper YAML multiline syntax:
-      - run: "echo Found it!
+      - run: |
+          echo Found it!
📝 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
- run: "echo Found it!
- run: "echo Found it!"
🧰 Tools
🪛 actionlint (1.7.3)

13-13: could not parse as YAML: yaml: line 13: found unexpected end of stream

(syntax-check)