Skip to content

Commit

Permalink
feat(#2): input name typo
Browse files Browse the repository at this point in the history
  • Loading branch information
h1alexbel committed Apr 1, 2024
1 parent 3a27676 commit 8dc41d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/git/tracehub/codereview/action/Entry.java
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public static void main(final String... args) throws Exception {
)
).readObject();
Logger.info(Entry.class, "event received %s", event.toString());
final String token = System.getenv().get("INPUT_GITHUBTOKEN");
final String token = System.getenv().get("INPUT_GITHUB_TOKEN");

Check warning on line 90 in src/main/java/git/tracehub/codereview/action/Entry.java

View check run for this annotation

Codecov / codecov/patch

src/main/java/git/tracehub/codereview/action/Entry.java#L90

Added line #L90 was not covered by tests
final Repo repo = new RtGithub(token)
.repos()
.get(new Coordinates.Simple(name));
Expand Down

0 comments on commit 8dc41d4

Please sign in to comment.