Skip to content

Commit 18588fa

Browse files
authored
Merge pull request #9 from quickfix-j/junie-init
Initialize JetBrains Junie 🚀
2 parents fac2493 + 470cec5 commit 18588fa

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

.devcontainer/devcontainer.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Junie
2+
run-name: Junie run ${{ inputs.run_id }}
3+
4+
permissions:
5+
contents: write
6+
pull-requests: write
7+
8+
on:
9+
workflow_dispatch:
10+
inputs:
11+
run_id:
12+
description: "id of workflow process"
13+
required: true
14+
workflow_params:
15+
description: "stringified params"
16+
required: true
17+
18+
jobs:
19+
call-workflow-passing-data:
20+
uses: jetbrains-junie/junie-workflows/.github/workflows/ej-issue.yml@main
21+
with:
22+
workflow_params: ${{ inputs.workflow_params }}

0 commit comments

Comments
 (0)