리드미 업데이트 ( ios 패키지명 수정 ) #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |