From dc2a672146eea5a371e7d7c043f5086d6402d6d9 Mon Sep 17 00:00:00 2001 From: "junie-eap[bot]" <199612962+junie-eap[bot]@users.noreply.github.com> Date: Wed, 4 Jun 2025 13:00:15 +0000 Subject: [PATCH 1/2] feat(junie): added .junie workflow --- .github/workflows/junie.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 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 0000000000000..66a8e4e64d2e7 --- /dev/null +++ b/.github/workflows/junie.yml @@ -0,0 +1,22 @@ +name: Junie +run-name: Junie run ${{ inputs.run_id }} + +permissions: + contents: write + pull-requests: 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 }} From 44c89a2bf5192fffb99dfd1fed3cf4df65c08569 Mon Sep 17 00:00:00 2001 From: "junie-eap[bot]" <199612962+junie-eap[bot]@users.noreply.github.com> Date: Wed, 4 Jun 2025 13:00:16 +0000 Subject: [PATCH 2/2] feat(junie): added .devcontainer.json --- .devcontainer/devcontainer.json | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000000000..e6d74b831f327 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,7 @@ +{ + "name": "Python 3", + "image": "mcr.microsoft.com/devcontainers/python:1-3.12", + "features": { + "ghcr.io/devcontainers/features/conda:1": {} + } +} \ No newline at end of file