Skip to content

Commit 55f111f

Browse files
committed
Enable github pr creation
1 parent c304b3b commit 55f111f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/tck-build-logic/src/main/java/org/graalvm/internal/tck/ContributionTask.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
import java.io.File;
1919
import java.io.IOException;
2020
import java.io.InputStream;
21-
import java.net.URISyntaxException;
2221
import java.nio.charset.StandardCharsets;
2322
import java.nio.file.Files;
2423
import java.nio.file.Path;
@@ -105,8 +104,7 @@ void run() throws IOException {
105104
boolean shouldCreatePR = shouldCreatePullRequest();
106105
if (shouldCreatePR) {
107106
String branch = "add-support-for-" + coordinates.toString().replace(':', '-');
108-
// TODO disabled for local testing
109-
// createPullRequest(branch);
107+
createPullRequest(branch);
110108

111109
InteractiveTaskUtils.printUserInfo("After your pull requests gets generated, please update the pull request description to mention all places where your pull request" +
112110
"accesses files, network, docker, or any other external service, and check if all checks in the description are correctly marked");

0 commit comments

Comments
 (0)