Skip to content

Commit

Permalink
Merge branch 'master' into feat/autoshard-filter
Browse files Browse the repository at this point in the history
  • Loading branch information
chaitanyaprem committed Sep 20, 2023
2 parents f43d6ac + bf90ab4 commit ecd355c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/auto_assign_pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Auto Assign PR to Creator

on:
pull_request:
types:
- opened

jobs:
assign_creator:
runs-on: ubuntu-latest
steps:
- name: Assign PR to author
run: |
gh pr update ${{ github.event.pull_request.number }} --add-assignee "${{ github.event.pull_request.user.login }}"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit ecd355c

Please sign in to comment.