Netflixの推薦&検索システム最前線 - QCon San Francisco 2024現地レポート, UZABASE, 2024.12 #4679
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: Issue Correction | |
on: | |
issues: | |
types: [opened, labeled] | |
jobs: | |
correct_issue_title: | |
runs-on: ubuntu-latest | |
if: github.actor == 'AkihikoWatanabe' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: pip install PyGithub feedparser openai==1.55.3 | |
- name: Correct Issue | |
env: | |
TOKEN: ${{ secrets.TOKEN }} | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
run: python .github/scripts/correct_issue.py |