Files
gatekeeper/.gitea/workflows/pr_check.yml
ahtlon 324cd5473f
All checks were successful
Pull-Request Vibe Check / ci-test (pull_request) Successful in 7s
Test python action / test (push) Successful in 31s
17
2026-08-10 23:51:06 +02:00

30 lines
894 B
YAML

name: Pull-Request Vibe Check
on:
pull_request:
types: [ opened, synchronize, reopened ]
jobs:
ci-test:
runs-on: node-current
steps:
- name: Setup PRBot
uses: imgurbot12/prbot@v2
env:
RUST_LOG: debug
with:
username: ${{ secrets.prbot_username }}
api_token: ${{ secrets.prbot_token }}
- uses: actions/checkout@v6
- name: Do Something With Errors
run: |
echo "::error title=ruff (B904),file=app/controllers/cardManager.py,line=46,col=9,endLine=46,endColumn=83::app/controllers/cardManager.py:46:9: B904 Within an except clause, raise exceptions with raise ... from err or raise ... from None to distinguish them from errors in exception handling" | prbot
- name: Post PR Feedback
if: always()
run: prbot commit
env:
RUST_LOG: debug