fix: [#1558] Fixes bug where psuedo selectors without an ending parentheses throws an invalid selector error, but should be considered as valid #163
Workflow file for this run
This file contains 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
name: Auto Assign | |
on: | |
pull_request: | |
types: | |
- opened | |
jobs: | |
auto-assign: | |
runs-on: ubuntu-latest | |
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 }}\"] | |
}" |