Skip to content

Commit

Permalink
add autp assign workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuhei373 committed Mar 2, 2024
1 parent ad07e9a commit 0d451e5
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Assign

on:
pull_request:
types: opened

permissions:
pull-requests: write
repository-projects: read

jobs:
assign:
name: Assign yourself
runs-on: ubuntu-latest
steps:
- name: Set GitHub assignees
env:
GH_TOKEN: ${{ github.token }}
run: gh pr edit ${{ github.event.number }} --add-assignee ${{ github.actor }} --repo ${{ github.repository }}

0 comments on commit 0d451e5

Please sign in to comment.