diff options
Diffstat (limited to 'src/Plugin')
-rw-r--r-- | src/Plugin/GitHubCommit.hs | 6 | ||||
-rw-r--r-- | src/Plugin/GitRemoteSetOrigin.hs | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/Plugin/GitHubCommit.hs b/src/Plugin/GitHubCommit.hs index c4dd2ca..9c32462 100644 --- a/src/Plugin/GitHubCommit.hs +++ b/src/Plugin/GitHubCommit.hs @@ -15,9 +15,9 @@ import qualified Message as M import Plugin.Base gitHubCommit = Plugin - { matchRegex = "^[0-9a-f]{40}$" - , perform = gitHubCommitAction - , command = "GIT_SHA" + { matchRegex = "^[0-9a-f]{40}$" + , perform = gitHubCommitAction + , command = "GIT_SHA" , description = "Generate a commit URL based on the given SHA." } diff --git a/src/Plugin/GitRemoteSetOrigin.hs b/src/Plugin/GitRemoteSetOrigin.hs index 5b2aad2..a0d0fa7 100644 --- a/src/Plugin/GitRemoteSetOrigin.hs +++ b/src/Plugin/GitRemoteSetOrigin.hs @@ -14,9 +14,9 @@ import qualified Message as M import Plugin.Base gitRemoteSetOrigin = Plugin - { matchRegex = "^git remote set origin ([^ ]+)$" - , perform = gitRemoteSetOriginAction - , command = "git remote set origin URL" + { matchRegex = "^git remote set origin ([^ ]+)$" + , perform = gitRemoteSetOriginAction + , command = "git remote set origin URL" , description = "Set the git remote URL for this channel." } |