From 79b169fa8171e6d87d53631a5d9f5e05bac743af Mon Sep 17 00:00:00 2001 From: "jetbrains-junie[bot]" <201638009+jetbrains-junie[bot]@users.noreply.github.com> Date: Tue, 3 Jun 2025 00:12:24 +0200 Subject: [PATCH] =?UTF-8?q?Initialize=20JetBrains=20Junie=20=F0=9F=9A=80?= =?UTF-8?q?=20(#24)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat(junie): added .junie workflow * feat(junie): added .devcontainer.json --------- Co-authored-by: jetbrains-junie[bot] <201638009+jetbrains-junie[bot]@users.noreply.github.com> --- .devcontainer/devcontainer.json | 12 ++++++++++++ .github/workflows/junie.yml | 22 ++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 .devcontainer/devcontainer.json create mode 100644 .github/workflows/junie.yml diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..ac3e23a --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,12 @@ +{ + "name": "Java", + "image": "mcr.microsoft.com/devcontainers/java:1-21", + "features": { + "ghcr.io/devcontainers/features/java:1": { + "version": "none", + "installMaven": "true", + "mavenVersion": "3.8.6", + "installGradle": "true" + } + } +} \ No newline at end of file diff --git a/.github/workflows/junie.yml b/.github/workflows/junie.yml new file mode 100644 index 0000000..66a8e4e --- /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 }}