Skip to content

ファイルを添付したらすぐにAIに要約のリクエストを送る + 本文と要約を横並びに表示にする #12

ファイルを添付したらすぐにAIに要約のリクエストを送る + 本文と要約を横並びに表示にする

ファイルを添付したらすぐにAIに要約のリクエストを送る + 本文と要約を横並びに表示にする #12

Workflow file for this run

name: Assign Auto
on:
pull_request:
types: [opened]
jobs:
assign:
runs-on: ubuntu-latest
steps:
- name: Set assignees
run: gh pr edit $NUMBER --add-assignee $ASSIGNEE
if: github.actor != 'dependabot[bot]'
env:
GH_TOKEN: ${{ github.token }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.pull_request.number }}
ASSIGNEE: ${{ github.actor }}