8000 gh-86155: Fix htmlparser "unclosed script tag causes data loss" by waylan · Pull Request #22658 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-86155: Fix htmlparser "unclosed script tag causes data loss" #22658

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

Merged
merged 8 commits into from
May 10, 2025
20 changes: 20 additions & 0 deletions .github/workflows/trigger-bots.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Bots

on:
# PR synchronization is a push into a branch associated with the PR
pull_request:
types: [opened, edited, synchronize, labeled, unlabeled]
issue_comment:
types: [created, edited]
pull_request_review_comment:
types: [created, edited]

jobs:
call_bedevere:
name: Call Bedevere
runs-on: ubuntu-latest
steps:
- uses: arhadthedev/bedevere@c51d1d2d5c7a9cec31ce16af209f42a5905070dd
with:
token: ${{ secrets.BEDEVERE_PAT }}
event: ${{ toJSON(github.event) }}
0