diff --git a/src/main/java/org/eclipsefoundation/git/eca/namespace/GithubCommitStatuses.java b/src/main/java/org/eclipsefoundation/git/eca/namespace/GithubCommitStatuses.java
index 2017fca8988bfccb10fee240da2d03e53f3800c4..a54100a8148e72e65b796f9fdf3a7abbc79cdb1b 100644
--- a/src/main/java/org/eclipsefoundation/git/eca/namespace/GithubCommitStatuses.java
+++ b/src/main/java/org/eclipsefoundation/git/eca/namespace/GithubCommitStatuses.java
@@ -21,8 +21,8 @@ package org.eclipsefoundation.git.eca.namespace;
 public enum GithubCommitStatuses {
 
     SUCCESS("The author(s) of the pull request is covered by necessary legal agreements in order to proceed!"),
-    FAILURE("An unexpected error has occurred. Please contact webmaster@eclipse.org."),
-    ERROR("The author(s) of the pull request is not covered by necessary legal agreements in order to proceed."),
+    FAILURE("The author(s) of the pull request is not covered by necessary legal agreements in order to proceed."),
+    ERROR("An unexpected error has occurred. Please contact webmaster@eclipse.org."),
     PENDING("Eclipse Foundation Contributor Agreement validation is in progress.");
 
     private String message;