Moves notifications into commits@ list
diff --git a/.asf.yaml b/.asf.yaml
index 2fe0ffd..4d26e0d 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -3,8 +3,8 @@
   commits: commits@struts.apache.org
   # Send all issue emails (new, closed, comments) to issues@
   issues: issues@struts.apache.org
-  # Send new/closed PR notifications to dev@
-  pullrequests_status: dev@struts.apache.org
+  # Send new/closed PR notifications to commits@
+  pullrequests_status: commits@struts.apache.org
   # Send individual PR comments/reviews to issues@
   pullrequests_comment: issues@struts.apache.org
   # Link opened PRs with JIRA
diff --git a/Jenkinsfile b/Jenkinsfile
index b74c44e..1d02012 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -19,9 +19,9 @@
     stage('Build a staged website') {
       steps {
         sh '''
-          echo Generating a new version of website        
+          echo Generating a new version of website
 
-          gem install --install-dir ${GEM_HOME} bundler -v '2.3.23'          
+          gem install --install-dir ${GEM_HOME} bundler -v '2.3.23'
 
           bundle config set --local path ${GEM_HOME}
           bundle install
@@ -41,7 +41,7 @@
           git fetch asf
           git checkout asf-staging
           git pull asf asf-staging
-          
+
           cp -r _site/* content
           cp -r _site/.htaccess content/.htaccess
 
@@ -70,7 +70,7 @@
     failure {
       script {
         emailext(
-            //to: "dev@struts.apache.org",
+            //to: "commits@struts.apache.org",
             recipientProviders: [[$class: 'DevelopersRecipientProvider']],
             from: "Mr. Jenkins <jenkins@builds.apache.org>",
             subject: "Jenkins job ${env.JOB_NAME}#${env.BUILD_NUMBER} failed",
@@ -93,7 +93,7 @@
     fixed {
       script {
         emailext(
-            //to: "dev@struts.apache.org",
+            //to: "commits@struts.apache.org",
             recipientProviders: [[$class: 'DevelopersRecipientProvider']],
             from: 'Mr. Jenkins <jenkins@builds.apache.org>',
             subject: "Jenkins job ${env.JOB_NAME}#${env.BUILD_NUMBER} back to normal",