We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 45dc93c + d46c6a1 commit a96444dCopy full SHA for a96444d
2 files changed
.devcontainer/devcontainer.json
@@ -0,0 +1,12 @@
1
+{
2
+ "name": "Java",
3
+ "image": "mcr.microsoft.com/devcontainers/java:1-21",
4
+ "features": {
5
+ "ghcr.io/devcontainers/features/java:1": {
6
+ "version": "none",
7
+ "installMaven": "true",
8
+ "mavenVersion": "3.8.6",
9
+ "installGradle": "true"
10
+ }
11
12
+}
.github/workflows/junie.yml
@@ -0,0 +1,21 @@
+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
13
+ workflow_params:
14
+ description: "stringified params"
15
16
17
+jobs:
18
+ call-workflow-passing-data:
19
+ uses: jetbrains-junie/junie-workflows/.github/workflows/ej-issue.yml@main
20
+ with:
21
+ workflow_params: ${{ inputs.workflow_params }}
0 commit comments