Just Run Autogpt #1
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: Just Run Autogpt | |
on: | |
workflow_dispatch : #only run when requested | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Checkout repository | |
uses: actions/checkout@master | |
with: | |
submodules: 'true' | |
- name: Run autogpt in docker with mock openai server | |
run: docker-compose up --no-build | |
env: | |
GITHUB_PAT: ${{ secrets.PAT }} | |
GITHUB_REPO: "jmikedupont2/ai-ticket" | |