We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44b861d commit 574f6a4Copy full SHA for 574f6a4
src/main/java/org/kohsuke/github/GitHub.java
@@ -1212,7 +1212,7 @@ public GHApp getApp(@Nonnull String slug) throws IOException {
1212
* "https://docs.github.com/en/rest/apps/apps?apiVersion=2022-11-28#create-a-github-app-from-a-manifest">Get an
1213
* app</a>
1214
*/
1215
- public GHAppFromManifest createAppFromManifest(String code) throws IOException {
+ public GHAppFromManifest createAppFromManifest(@Nonnull String code) throws IOException {
1216
return createRequest().method("POST")
1217
.withUrlPath("/app-manifests/" + code + "/conversions")
1218
.fetch(GHAppFromManifest.class);
0 commit comments