Skip to content

ci: 👷 add workflow to auto-add PRs and Issues to board #3

ci: 👷 add workflow to auto-add PRs and Issues to board

ci: 👷 add workflow to auto-add PRs and Issues to board #3

name: Assign PR to creator
on:
pull_request:
types:
- reopened
- opened
permissions:
pull-requests: write
jobs:
assign-pr-to-creator:
name: Assign PR to creator
runs-on: ubuntu-latest
steps:
- name: Assign PR to creator
if: ${{ github.event_name == 'pull_request' }}
run: |
gh pr edit $PR --add-assignee $AUTHOR
env:
AUTHOR: ${{ github.event.pull_request.user.login }}
PR: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}