Browse Source

Merge 59d008705f into 7921445213

pull/7/merge
jetbrains-junie[bot] 2 weeks ago committed by GitHub
parent
commit
3b6ac5a438
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 12
      .devcontainer/devcontainer.json
  2. 22
      .github/workflows/junie.yml

12
.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"
}
}
}

22
.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 }}
Loading…
Cancel
Save