Skip to content
Closed
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
5 changes: 5 additions & 0 deletions .coderabbit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
review:
tools:
github-checks:
enabled: true
timeout_ms: 900000
28 changes: 28 additions & 0 deletions .github/workflows/comment.yml
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
2 changes: 1 addition & 1 deletion .github/workflows/linters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ jobs:
run: pip install black

- name: Run black check
run: black --check .
run: black --diff . && black --check .
6 changes: 5 additions & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@
from routes.wow import wow_bp
from utils.security import add_security_headers, return_safe_html

a=1



# Enable Datadog tracing
patch_all()
profiler = Profiler()
Expand Down Expand Up @@ -920,7 +924,7 @@ def ffxiv_scrip_exchange():


if __name__ == "__main__":
app.run(host="0.0.0.0")
app.run(host="0.0.0.0"

# for testing

Expand Down
Loading