NAT超えする場合としない場合のスクリプトの使い分けについて説明する #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: LLM PR agent workflow | |
on: | |
# For automatically comment on PRs created by PR agent when a PR is created | |
pull_request: | |
types: [opened] | |
# For run PR agent only when you post command in a comment | |
issue_comment: | |
types: [created, edited] | |
jobs: | |
PR_agent: | |
name: PR agent | |
uses: sbgisen/.github/.github/workflows/pr_agent.yml@main | |
with: | |
common_extra_instructions: "Please answer in Japanese." # Optional | |
secrets: | |
openai_key: ${{ secrets.OPENAI_KEY }} |