Skip to content

fix: [#2397] <input type=radio checked> added via innerHTML does not uncheck its group #575

fix: [#2397] <input type=radio checked> added via innerHTML does not uncheck its group

fix: [#2397] <input type=radio checked> added via innerHTML does not uncheck its group #575

Workflow file for this run

name: Auto Assign
on:
pull_request:
types:
- opened
jobs:
auto-assign:
runs-on: ubuntu-latest
permissions:
contents: read
issues: write
pull-requests: write
steps:
- name: Set build URL to commit status
run: |
curl \
--request POST \
--url https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.number }} \
--header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' \
--header 'content-type: application/json' \
--data "{
\"assignees\": [\"${{ github.actor }}\"]
}"