Skip to content

Fix deploy workflow

Fix deploy workflow #3

Workflow file for this run

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