Skip to content

Commit 3965fc1

Browse files
Merge pull request #78 from refactorfirst/update-gh-buttons
Updated GH buttons to point to refactorfirst/RefactorFirst repo
2 parents 62d0dab + 44b0c4d commit 3965fc1

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

refactor-first-maven-plugin/src/main/java/org/hjug/mavenreport/RefactorFirstRealMavenReport.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -501,31 +501,31 @@ void renderGitHubButtons(Sink mainSink) {
501501

502502
renderGitHubButton(
503503
mainSink,
504-
"https://github.com/jimbethancourt/refactorfirst",
504+
"https://github.com/refactorfirst/refactorfirst",
505505
"octicon-star",
506506
"true",
507-
"Star jimbethancourt/refactorfirst on GitHub",
507+
"Star refactorfirst/refactorfirst on GitHub",
508508
"Star");
509509
renderGitHubButton(
510510
mainSink,
511-
"https://github.com/jimbethancourt/refactorfirst/fork",
511+
"https://github.com/refactorfirst/refactorfirst/fork",
512512
"octicon-repo-forked",
513513
"true",
514-
"Fork jimbethancourt/refactorfirst on GitHub",
514+
"Fork refactorfirst/refactorfirst on GitHub",
515515
"Fork");
516516
renderGitHubButton(
517517
mainSink,
518-
"https://github.com/jimbethancourt/refactorfirst/subscription",
518+
"https://github.com/refactorfirst/refactorfirst/subscription",
519519
"octicon-eye",
520520
"true",
521-
"Watch jimbethancourt/refactorfirst on GitHub",
521+
"Watch refactorfirst/refactorfirst on GitHub",
522522
"Watch");
523523
renderGitHubButton(
524524
mainSink,
525-
"https://github.com/jimbethancourt/refactorfirst/issue",
525+
"https://github.com/refactorfirst/refactorfirst/issue",
526526
"octicon-issue-opened",
527527
"false",
528-
"Issue jimbethancourt/refactorfirst on GitHub",
528+
"Issue refactorfirst/refactorfirst on GitHub",
529529
"Issue");
530530
renderGitHubButton(
531531
mainSink,

report/src/main/java/org/hjug/refactorfirst/report/HtmlReport.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -375,13 +375,13 @@ void renderGithubButtons(StringBuilder stringBuilder) {
375375
stringBuilder.append("Show RefactorFirst some ❤️");
376376
stringBuilder.append("<br/>");
377377
stringBuilder.append(
378-
"<a class=\"github-button\" href=\"https://github.com/jimbethancourt/refactorfirst\" data-icon=\"octicon-star\" data-size=\"large\" data-show-count=\"true\" aria-label=\"Star jimbethancourt/refactorfirst on GitHub\">Star</a>");
378+
"<a class=\"github-button\" href=\"https://github.com/refactorfirst/refactorfirst\" data-icon=\"octicon-star\" data-size=\"large\" data-show-count=\"true\" aria-label=\"Star refactorfirst/refactorfirst on GitHub\">Star</a>");
379379
stringBuilder.append(
380-
"<a class=\"github-button\" href=\"https://github.com/jimbethancourt/refactorfirst/fork\" data-icon=\"octicon-repo-forked\" data-size=\"large\" data-show-count=\"true\" aria-label=\"Fork jimbethancourt/refactorfirst on GitHub\">Fork</a>");
380+
"<a class=\"github-button\" href=\"https://github.com/refactorfirst/refactorfirst/fork\" data-icon=\"octicon-repo-forked\" data-size=\"large\" data-show-count=\"true\" aria-label=\"Fork refactorfirst/refactorfirst on GitHub\">Fork</a>");
381381
stringBuilder.append(
382-
"<a class=\"github-button\" href=\"https://github.com/jimbethancourt/refactorfirst/subscription\" data-icon=\"octicon-eye\" data-size=\"large\" data-show-count=\"true\" aria-label=\"Watch jimbethancourt/refactorfirst on GitHub\">Watch</a>");
382+
"<a class=\"github-button\" href=\"https://github.com/refactorfirst/refactorfirst/subscription\" data-icon=\"octicon-eye\" data-size=\"large\" data-show-count=\"true\" aria-label=\"Watch refactorfirst/refactorfirst on GitHub\">Watch</a>");
383383
stringBuilder.append(
384-
"<a class=\"github-button\" href=\"https://github.com/jimbethancourt/refactorfirst/issues\" data-icon=\"octicon-issue-opened\" data-size=\"large\" data-show-count=\"false\" aria-label=\"Issue jimbethancourt/refactorfirst on GitHub\">Issue</a>");
384+
"<a class=\"github-button\" href=\"https://github.com/refactorfirst/refactorfirst/issues\" data-icon=\"octicon-issue-opened\" data-size=\"large\" data-show-count=\"false\" aria-label=\"Issue refactorfirst/refactorfirst on GitHub\">Issue</a>");
385385
stringBuilder.append(
386386
"<a class=\"github-button\" href=\"https://github.com/sponsors/jimbethancourt\" data-icon=\"octicon-heart\" data-size=\"large\" aria-label=\"Sponsor @jimbethancourt on GitHub\">Sponsor</a>");
387387
stringBuilder.append("</div>");

0 commit comments

Comments
 (0)