Skip to content

[Pitch]: HippUnfold_v2.0 #8

[Pitch]: HippUnfold_v2.0

[Pitch]: HippUnfold_v2.0 #8

Workflow file for this run

name: Update pitch
on:
issues:
types: [edited]
jobs:
compile-form:
if: >
contains(github.event.issue.labels.*.name, 'pitch')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Parse issue
id: parse
uses: onmax/[email protected]
with:
issue_number: ${{ github.event.issue.number }}
- name: Update automated comment
uses: actions/github-script@v6
env:
FORM_JSON: ${{ steps.parse.outputs.payload }}
with:
script: |
const { default: script } = await import('${{ github.workspace }}/actions/update-pitch.mjs')
await script({github, context})