Plugin Compute #4232
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: "Plugin Compute" | |
on: | |
workflow_dispatch: | |
inputs: | |
stateId: | |
description: "State Id" | |
eventName: | |
description: "Event Name" | |
eventPayload: | |
description: "Event Payload" | |
settings: | |
description: "Settings" | |
authToken: | |
description: "Auth Token" | |
ref: | |
description: "Ref" | |
signature: | |
description: "Signature tp identify the Kernel" | |
command: | |
description: "Command" | |
jobs: | |
compute: | |
name: "Comment Embedding Store" | |
runs-on: ubuntu-latest | |
permissions: write-all | |
environment: ${{ github.ref == 'refs/heads/main' && 'main' || 'development' }} | |
env: | |
SUPABASE_URL: ${{ secrets.SUPABASE_URL }} | |
SUPABASE_KEY: ${{ secrets.SUPABASE_KEY }} | |
VOYAGEAI_API_KEY: ${{secrets.VOYAGEAI_API_KEY}} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
KERNEL_PUBLIC_KEY: ${{ secrets.KERNEL_PUBLIC_KEY }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.10.0" | |
- name: Execute plugin | |
run: node dist/index.js | |
env: | |
PLUGIN_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SUPABASE_URL: ${{ secrets.SUPABASE_URL }} | |
SUPABASE_KEY: ${{ secrets.SUPABASE_KEY }} | |
VOYAGEAI_API_KEY: ${{secrets.VOYAGEAI_API_KEY}} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
KERNEL_PUBLIC_KEY: ${{ secrets.KERNEL_PUBLIC_KEY }} |