Handle deleted one-on-one details #3248
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 Author Assign" | |
| on: | |
| pull_request: | |
| types: [ opened, reopened ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read # required by workflow defaults | |
| jobs: | |
| assign-author: | |
| name: Assign Author | |
| permissions: | |
| pull-requests: write # required to assign the pull request author | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: toshimaru/auto-author-assign@bdd7688cbf9e6d5683f02f8c7d8ae4062a254b6d |