test(utils): add test cases for valid and invalid spinner usages #529
Workflow file for this run
This file contains hidden or 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: Assign PR author | |
| on: | |
| pull_request_target: | |
| types: [opened] | |
| jobs: | |
| assign-author: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - name: Assign PR author | |
| uses: actions/github-script@v7 | |
| with: | |
| script: | | |
| github.rest.issues.addAssignees({ | |
| issue_number: context.issue.number, | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| assignees: [context.payload.pull_request.user.login] | |
| }) |