forked from ff14-advanced-market-search/temp-fe
-
Notifications
You must be signed in to change notification settings - Fork 0
Test local debug #129
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
Closed
Closed
Test local debug #129
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
ccd1562
Update app.py
alexcoderabbitai 0623380
Update app.py
alexcoderabbitai 4721e9e
add more to black
alexcoderabbitai f45547f
Update app.py
alexcoderabbitai 6e704dc
adding a long gh action
alexcoderabbitai ee5945e
change timeout_ms
alexcoderabbitai adc2318
wait longer
alexcoderabbitai e01d293
fix typo
alexcoderabbitai b798f41
test with sleep
alexcoderabbitai 22a22ac
fix it so it takes 4 min
alexcoderabbitai File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,5 @@ | ||
| reviews: | ||
| tools: | ||
| github-checks: | ||
| enabled: true | ||
| timeout_ms: 900000 |
This file contains hidden or 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,28 @@ | ||
| name: Auto Comment on PR | ||
|
|
||
| on: | ||
| pull_request: | ||
| types: [*] # Triggers on all pull request events | ||
| # pull_request: | ||
| # types: [opened] | ||
|
|
||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| comment: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| # - name: trigger pr | ||
| # uses: peter-evans/create-or-update-comment@v4 | ||
| # with: | ||
| # issue-number: ${{ github.event.pull_request.number }} | ||
| # body: | | ||
| # @coderabbitai full review | ||
| # - name: trigger pr | ||
| # uses: peter-evans/create-or-update-comment@v4 | ||
| # with: | ||
| # issue-number: ${{ github.event.pull_request.number }} | ||
| # body: | | ||
| # @coderabbitai sing me a song | ||
| - name: Wait 300 sec for timeout | ||
| run: sleep 300 |
This file contains hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Fix critical syntax error - missing closing parenthesis.
The
app.run()call is missing a closing parenthesis, which causes a syntax error and prevents the application from running. This is confirmed by the pipeline failure: "Black formatting failed: Cannot parse file due to EOF in multi-line statement at line 936."Apply this fix to correct the syntax error:
📝 Committable suggestion
🤖 Prompt for AI Agents