Skip to content

Commit

Permalink
[Setting] 작성자를 auto assign 하는 깃헙 액션 추가 (#94)
Browse files Browse the repository at this point in the history
* Create auto-assign.yml

* Update auto-assign.yml
  • Loading branch information
SeieunYoo authored Jul 24, 2024
1 parent 7f127b0 commit 4a861ed
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/auto-assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Auto Assign

on:
pull_request:
types: [opened, ready_for_review, converted_to_draft]
issues:
types: [opened]

jobs:
assign_pull_request:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- uses: hkusu/review-assign-action@v1
with:
assignees: ${{ github.actor }}

auto_assign_issue:
runs-on: ubuntu-latest
if: github.event_name == 'issues'
permissions:
issues: write
steps:
- name: 'Auto-assign issue'
uses: pozil/auto-assign-issue@v2
with:
assignees: ${{ github.actor }}

0 comments on commit 4a861ed

Please sign in to comment.