Add per-PR concurrency and cleanup for reports previews #108
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: Auto assign PR author | |
| on: | |
| issues: | |
| types: [ opened, reopened ] | |
| pull_request_target: | |
| types: [ opened, reopened, synchronize ] | |
| workflow_call: | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| assign-author: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Auto assign PR author | |
| uses: toshimaru/auto-author-assign@v3.0.1 | |
| with: | |
| repo-token: ${{ github.token }} |