mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2025-10-09 04:26:57 +02:00
22 lines
472 B
YAML
22 lines
472 B
YAML
name: Junie
|
|
run-name: Junie run ${{ inputs.run_id }}
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
run_id:
|
|
description: "id of workflow process"
|
|
required: true
|
|
workflow_params:
|
|
description: "stringified params"
|
|
required: true
|
|
|
|
jobs:
|
|
call-workflow-passing-data:
|
|
uses: jetbrains-junie/junie-workflows/.github/workflows/ej-issue.yml@main
|
|
with:
|
|
workflow_params: ${{ inputs.workflow_params }}
|