Skip to content

Research Command

Research Command #28

Workflow file for this run

name: Research Command
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"
jobs:
compute:
name: Research
runs-on: ubuntu-latest
permissions: write-all
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20.10.0"
- name: Yarn Install
run: yarn install
- name: Research
run: npx tsx ./src/main.ts
id: research
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}