Release v0.0.2 #5
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: Assign PR to creator | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
# This ensures that previous jobs for the workflow are canceled when the ref is | |
# updated. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
assign-author: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Assign PR to creator | |
uses: toshimaru/[email protected] | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |