@review uses a very long list of search parameters #271
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: Plan issue with Navie | |
on: | |
issues: | |
types: [opened, edited, reopened, labeled, unlabeled] | |
permissions: | |
contents: read | |
issues: write | |
jobs: | |
plan: | |
if: contains(github.event.issue.labels.*.name, 'navie-plan') | |
runs-on: ubuntu-latest | |
env: | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Plan with Navie | |
uses: getappmap/navie-editor/plan@main | |
with: | |
issue_id: ${{ github.event.issue.number }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} |