Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: fix broken links by replacing with updated links in actionRespon… #71

Merged
merged 2 commits into from
Jul 17, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions components/actions/actionResponses.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
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: <https://chaoss.community/kbtopic/working-groups/> 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: <https://handbook.chaoss.community/community-handbook/community-initiatives/working-groups>. The metrics are developed during our Working Group meetings.
`
);
}

async function joinMeet(say) {
return await say(
`You clicked *Join Meeting*\n
All CHAOSS meetings are open to everyone, and they happen virtually at <https://zoom.us/my/chaoss> 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 <https://zoom.us/my/chaoss> 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/.
`
);
}
Expand All @@ -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 Getting Started page here: https://chaoss.community/kb-getting-started/.
`
);
}
Expand All @@ -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.`
);
}

Expand Down