Skip to content

Commit

Permalink
Merge pull request #436 from UppuluriKalyani/UppuluriKalyani-patch-1
Browse files Browse the repository at this point in the history
Create auto_assign_for_pr.yml
  • Loading branch information
UppuluriKalyani authored Oct 18, 2024
2 parents c7e4ebf + 56440fd commit bd6dbf4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/auto_assign_for_pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: PR Auto-Assignment

on:
pull_request:
types: [opened]

jobs:
auto-assign:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- name: 'Auto-assign PR creator'
uses: kentaro-m/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }} # Required token for authentication
assignees: ${{ github.event.pull_request.user.login }} # Auto-assign the PR creator

0 comments on commit bd6dbf4

Please sign in to comment.