mirror of
https://github.com/jlengrand/github-api.git
synced 2026-03-23 08:21:22 +00:00
Compare commits
5 Commits
github-api
...
junie-init
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d85919658d | ||
|
|
6b30617090 | ||
|
|
3ced4fc9c8 | ||
|
|
4748db2bc3 | ||
|
|
e0ebec5d5c |
12
.devcontainer/devcontainer.json
Normal file
12
.devcontainer/devcontainer.json
Normal file
@@ -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
vendored
Normal file
22
.github/workflows/junie.yml
vendored
Normal file
@@ -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 }}
|
||||||
4
.github/workflows/release-drafter.yml
vendored
4
.github/workflows/release-drafter.yml
vendored
@@ -11,4 +11,6 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Release Drafter
|
- name: Release Drafter
|
||||||
uses: release-drafter/release-drafter@v5.15.0
|
uses: release-drafter/release-drafter@v5
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
[](https://mvnrepository.com/artifact/org.kohsuke/github-api)
|
[](https://mvnrepository.com/artifact/org.kohsuke/github-api)
|
||||||
[](https://gitter.im/hub4j/github-api?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
[](https://gitter.im/hub4j/github-api?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||||

|

|
||||||
|
[](https://codecov.io/gh/hub4j/github-api)
|
||||||
|
|
||||||
|
|
||||||
See https://github-api.kohsuke.org/ for more details
|
See https://github-api.kohsuke.org/ for more details
|
||||||
|
|||||||
4
pom.xml
4
pom.xml
@@ -2,7 +2,7 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>org.kohsuke</groupId>
|
<groupId>org.kohsuke</groupId>
|
||||||
<artifactId>github-api</artifactId>
|
<artifactId>github-api</artifactId>
|
||||||
<version>1.130</version>
|
<version>1.131-SNAPSHOT</version>
|
||||||
<name>GitHub API for Java</name>
|
<name>GitHub API for Java</name>
|
||||||
<url>https://github-api.kohsuke.org/</url>
|
<url>https://github-api.kohsuke.org/</url>
|
||||||
<description>GitHub API for Java</description>
|
<description>GitHub API for Java</description>
|
||||||
@@ -11,7 +11,7 @@
|
|||||||
<connection>scm:git:git@github.com/hub4j/${project.artifactId}.git</connection>
|
<connection>scm:git:git@github.com/hub4j/${project.artifactId}.git</connection>
|
||||||
<developerConnection>scm:git:ssh://git@github.com/hub4j/${project.artifactId}.git</developerConnection>
|
<developerConnection>scm:git:ssh://git@github.com/hub4j/${project.artifactId}.git</developerConnection>
|
||||||
<url>https://github.com/hub4j/github-api/</url>
|
<url>https://github.com/hub4j/github-api/</url>
|
||||||
<tag>github-api-1.130</tag>
|
<tag>HEAD</tag>
|
||||||
</scm>
|
</scm>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
|
|||||||
Reference in New Issue
Block a user