From 06090d9b8329a1aca982d8138f8218dd53d85fab Mon Sep 17 00:00:00 2001 From: "jetbrains-junie[bot]" <201638009+jetbrains-junie[bot]@users.noreply.github.com> Date: Thu, 10 Apr 2025 15:48:07 +0000 Subject: [PATCH 1/2] feat(junie): added .junie workflow --- .github/workflows/junie.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/junie.yml diff --git a/.github/workflows/junie.yml b/.github/workflows/junie.yml new file mode 100644 index 0000000..96a66cc --- /dev/null +++ b/.github/workflows/junie.yml @@ -0,0 +1,23 @@ +name: Junie +run-name: Junie run ${{ inputs.run_id }} + +permissions: + contents: write + pull-requests: write + packages: read + +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 }} From bade09af74d87f5821a47f0ff60cf44478837903 Mon Sep 17 00:00:00 2001 From: "jetbrains-junie[bot]" <201638009+jetbrains-junie[bot]@users.noreply.github.com> Date: Thu, 10 Apr 2025 15:48:07 +0000 Subject: [PATCH 2/2] feat(junie): added .devcontainer.json --- .devcontainer/devcontainer.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..6c2a64e --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,5 @@ +{ + "name": "Node.js", + "image": "mcr.microsoft.com/devcontainers/javascript-node:1-18-bullseye", + "postCreateCommand": "npm i" +} \ No newline at end of file