Multiplayer preparation #23
Workflow file for this run
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
# Simple workflow for deploying static content to GitHub Pages | |
name: Automatically generate PR description using OpenAI | |
on: | |
pull_request_target: | |
types: [opened] | |
workflow_dispatch: | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
openai-pr-description: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: platisd/openai-pr-description@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
openai_api_key: ${{ secrets.OPENAI_API_KEY }} |