From 4b74dd3c996dc8440a3b1430d110fce5adba6507 Mon Sep 17 00:00:00 2001 From: AdeyinkaOresanya Date: Mon, 17 Jul 2023 14:34:00 +0100 Subject: [PATCH 1/2] Fix: fix broken links by replacing with updated links in actionResponse.js Signed-off-by: Adeyinka Oresanya adeyinkaoresanya@gmail.com Signed-off-by: AdeyinkaOresanya --- components/actions/actionResponses.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/components/actions/actionResponses.js b/components/actions/actionResponses.js index 195a8c0..28d90f5 100644 --- a/components/actions/actionResponses.js +++ b/components/actions/actionResponses.js @@ -1,7 +1,7 @@ async function develop(say) { return await say( `You clicked *Develop Metrics* \n - There are 5 Working Groups that develop metrics based on different aspects of open source community health: Risk, Value, Evolution, DEI, and Common. More information about each of these groups can be found here: and the metrics are developed during our Working Group meetings. + There are 5 Working Groups that develop metrics based on different aspects of open source community health: Risk, Value, Evolution, DEI, and Common. More information about each of these groups can be found here: and the metrics are developed during our Working Group meetings. ` ); } @@ -9,7 +9,7 @@ async function develop(say) { async function joinMeet(say) { return await say( `You clicked *Join Meeting*\n - All CHAOSS meetings are open to everyone, and they happen virtually at We recommend a good first meeting is our Weekly Community Call (Every Tuesday at 11:00 am US Central/Chicago time) but you can see a calendar of all our meetings at https://chaoss.community/participate. + All CHAOSS meetings are open to everyone, and they happen virtually at We recommend a good first meeting is our Weekly Community Call (Every Tuesday at 11:00 am US Central/Chicago time) but you can see a calendar of all our meetings at https://chaoss.community/chaoss-calendar/. ` ); } @@ -24,7 +24,7 @@ async function contribute(say) { async function helpWithWebsite(say) { return await say( - `You clicked *Help with the Website*\n first step is getting to know our community! You can connect with us in any of the ways described in our Participate page here: https://chaoss.community/participate. + `You clicked *Help with the Website*\n first step is getting to know our community! You can connect with us in any of the ways described in our Participate page here: https://chaoss.community/kb-getting-started/. ` ); } @@ -40,14 +40,14 @@ async function docs(say) { async function implement_metrics(say) { return await say( `You clicked *Implement Metrics in my Project*\n - We encourage you to join one of our Working Groups for specific questions about implementing your metrics. You can read more about them here: https://chaoss.community/kbtopic/working-groups/.` + We encourage you to join one of our Working Groups for specific questions about implementing your metrics. You can read more about them here: https://handbook.chaoss.community/community-handbook/community-initiatives/working-groups.` ); } async function learn_something_else(say) { return await say( `You clicked *Learn About Something Else*\n - We encourage you to read through our Community Handbook: https://chaoss.community/kb-chaoss-community/, and if you still can't find what you're looking for, feel free to ask your question in our #newcomers slack channel.` + We encourage you to read through our Community Handbook: https://handbook.chaoss.community/, and if you still can't find what you're looking for, feel free to ask your question in our #newcomers slack channel.` ); } From e896e39bcf1621a747cb2d5a002198ca661aa8b2 Mon Sep 17 00:00:00 2001 From: AdeyinkaOresanya Date: Mon, 17 Jul 2023 17:13:42 +0100 Subject: [PATCH 2/2] Chore: replace 'Participate page' with 'Getting Started page' in actionResponse.js Signed-off-by: Adeyinka Oresanya adeyinkaoresanya@gmail.com Signed-off-by: AdeyinkaOresanya --- components/actions/actionResponses.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/actions/actionResponses.js b/components/actions/actionResponses.js index 28d90f5..37a363b 100644 --- a/components/actions/actionResponses.js +++ b/components/actions/actionResponses.js @@ -1,7 +1,7 @@ async function develop(say) { return await say( `You clicked *Develop Metrics* \n - There are 5 Working Groups that develop metrics based on different aspects of open source community health: Risk, Value, Evolution, DEI, and Common. More information about each of these groups can be found here: and the metrics are developed during our Working Group meetings. + There are 5 Working Groups that develop metrics based on different aspects of open source community health: Risk, Value, Evolution, DEI, and Common. More information about each of these groups can be found here: . The metrics are developed during our Working Group meetings. ` ); } @@ -24,7 +24,7 @@ async function contribute(say) { async function helpWithWebsite(say) { return await say( - `You clicked *Help with the Website*\n first step is getting to know our community! You can connect with us in any of the ways described in our Participate page here: https://chaoss.community/kb-getting-started/. + `You clicked *Help with the Website*\n first step is getting to know our community! You can connect with us in any of the ways described in our Getting Started page here: https://chaoss.community/kb-getting-started/. ` ); }