Skip to content

Commit

Permalink
GitHub Actions: Automatically assign pull request authors (#687)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-magda authored Sep 29, 2023
1 parent 59fe8f4 commit 7f590d0
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/auto_author_assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Auto Author Assign

on:
pull_request_target:
types: [opened, reopened]

permissions:
pull-requests: write

jobs:
assign-author:
runs-on: ubuntu-22.04
if: ${{ !github.event.pull_request.assignee }}
steps:
- uses: toshimaru/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 7f590d0

Please sign in to comment.