Skip to content

feat: workflowにbuildステップを追加 #2

feat: workflowにbuildステップを追加

feat: workflowにbuildステップを追加 #2

Workflow file for this run

name: Pull Request Auto Assign
on:
pull_request:
types:
- opened
jobs:
assign:
name: Auto Assign
if: endsWith(github.actor, '[bot]') == false && (github.event.pull_request.assignees == null || github.event.pull_request.assignees.length == 0)
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 }}