Skip to content

Commit

Permalink
Merge pull request #3 from jsoref/github
Browse files Browse the repository at this point in the history
Use proper case for GitHub
  • Loading branch information
l3ender authored Sep 24, 2023
2 parents 6134e02 + 11b234e commit 36632d0
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
## Github Custom Notification Context SCM Behaviour Jenkins plugin
## GitHub Custom Notification Context SCM Behaviour Jenkins plugin

This plugin allows defining custom context labels for GitHub build status notifications. This was implemented by Github Branch Source trait.
This plugin allows defining custom context labels for GitHub build status notifications. This was implemented by GitHub Branch Source trait.

## How to use this plugin

After installing, go to the job configuration. Under "Branch sources" -> "GitHub" -> "Behaviors", click "Add" and select "Custom Github Notification Context" from the dropdown menu. Then you can type your custom context name into the "Label" field.
After installing, go to the job configuration. Under "Branch sources" -> "GitHub" -> "Behaviors", click "Add" and select "Custom GitHub Notification Context" from the dropdown menu. Then you can type your custom context name into the "Label" field.

## Development of this plugin

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
<jenkins.version>2.387.3</jenkins.version>
</properties>

<name>Github Custom Notification Context SCM Behaviour</name>
<description>A trait which allows the setting of a custom context in the Github status notifications</description>
<url>https://wiki.jenkins-ci.org/display/JENKINS/Github+Custom+Notification+Context+SCM+Behaviour</url>
<name>GitHub Custom Notification Context SCM Behaviour</name>
<description>A trait which allows the setting of a custom context in the GitHub status notifications</description>
<url>https://wiki.jenkins-ci.org/display/JENKINS/GitHub+Custom+Notification+Context+SCM+Behaviour</url>

<licenses>
<license>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public static class DescriptorImpl extends SCMSourceTraitDescriptor {
@NonNull
@Override
public String getDisplayName() {
return "Custom Github Notification Context";
return "Custom GitHub Notification Context";
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/index.jelly
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?jelly escape-by-default='true'?>
<div>
Github Branch Source trait to define custom context labels for Github build status notifications.
GitHub Branch Source trait to define custom context labels for GitHub build status notifications.
</div>
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<div>
The text of the context label for Github status notifications.
The text of the context label for GitHub status notifications.
</div>
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<div>
Defines a custom context label to be sent as part of Github Status notifications for this project.
Defines a custom context label to be sent as part of GitHub Status notifications for this project.
</div>

0 comments on commit 36632d0

Please sign in to comment.