Skip to content

네이버 로그인 구현 #74

네이버 로그인 구현

네이버 로그인 구현 #74

name: auto-assign-action
on:
pull_request:
types:
- opened
jobs:
assign:
name: Assign
if: endsWith(github.actor, '[bot]') == false && github.event.pull_request.assignee == null
runs-on: ubuntu-latest
permissions:
pull-requests: write
repository-projects: read
steps:
- name: Add event actor to assignees
env:
GH_TOKEN: ${{ github.token }}
GH_REPO: ${{ github.repository }}
run: gh pr edit ${{ github.event.number }} --add-assignee ${{ github.actor }}