Skip to content

Commit

Permalink
auto assign pr workflow (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
daviinaa authored Nov 27, 2024
1 parent bcfe7dd commit a639f6d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/auto-author-assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# .github/workflows/auto-author-assign.yml
name: Auto Author Assign

on:
pull_request_target:
types: [opened, reopened]

permissions:
pull-requests: write

jobs:
assign-author:
if: ${{ !contains(github.event.pull_request.assignees, '') }}
runs-on: ubuntu-latest
steps:
- uses: toshimaru/auto-author-assign@v2.1.1

0 comments on commit a639f6d

Please sign in to comment.