diff --git a/README.md b/README.md index bd02c836ac79..298bd17399c9 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,10 @@ If you're having trouble with your GitHub account, contact [Support](https://sup That's how you can easily become a member of the GitHub Docs community. :sparkles: +## Voice Communication + +To set up and use voice communication, refer to the [Voice Communication Documentation](content/voice-communication.md). + ## READMEs In addition to the README you're reading right now, this repo includes other READMEs that describe the purpose of each subdirectory in more detail: diff --git a/content/contributing/collaborating-on-github-docs/about-contributing-to-github-docs.md b/content/contributing/collaborating-on-github-docs/about-contributing-to-github-docs.md index b2b7f29d8d09..1bb9638a4e3c 100644 --- a/content/contributing/collaborating-on-github-docs/about-contributing-to-github-docs.md +++ b/content/contributing/collaborating-on-github-docs/about-contributing-to-github-docs.md @@ -62,3 +62,7 @@ We do not currently accept pull requests for translated content. {% data variables.product.prodname_dotcom %}'s site policies are also published on docs.github.com. If you find a typo in the site policy section, you can open a pull request to fix it. For anything else, see [Contributing](https://github.com/github/site-policy/blob/main/CONTRIBUTING.md) in the `site-policy` repository. + +## Voice Communication + +To set up and use voice communication, refer to the [Voice Communication Documentation](content/voice-communication.md). diff --git a/content/voice-communication.md b/content/voice-communication.md new file mode 100644 index 000000000000..a829509a559c --- /dev/null +++ b/content/voice-communication.md @@ -0,0 +1,31 @@ +# Voice Communication + +## Setting Up Voice Communication + +To set up voice communication, follow these steps: + +1. **Install a Voice Communication Tool**: Choose a voice communication tool that suits your needs. Some popular options include Zoom, Microsoft Teams, and Discord. Download and install the tool on your device. + +2. **Create an Account**: Sign up for an account with the chosen voice communication tool. Follow the instructions provided by the tool to create your account. + +3. **Configure Audio Settings**: Open the voice communication tool and navigate to the audio settings. Ensure that your microphone and speakers are properly configured. Test the audio to make sure everything is working correctly. + +4. **Invite Participants**: If you are hosting a voice communication session, invite the participants by sharing the meeting link or sending invitations through the tool. Make sure to provide the necessary details such as the date, time, and agenda of the meeting. + +5. **Join a Voice Communication Session**: If you are joining a voice communication session, click on the meeting link or follow the instructions provided by the host to join the session. Ensure that your microphone and speakers are working properly before joining. + +## Using Voice Communication + +Once you have set up voice communication, you can use it for various purposes such as team meetings, project discussions, and remote collaboration. Here are some tips for using voice communication effectively: + +1. **Prepare an Agenda**: Before the meeting, prepare an agenda to ensure that the discussion stays focused and productive. Share the agenda with the participants in advance. + +2. **Mute When Not Speaking**: To avoid background noise and interruptions, mute your microphone when you are not speaking. This helps maintain a clear and professional communication environment. + +3. **Use Video When Necessary**: If the voice communication tool supports video, consider using video for important discussions or presentations. Video can enhance communication by providing visual cues and improving engagement. + +4. **Take Notes**: During the meeting, take notes to capture important points and action items. This helps ensure that everyone is on the same page and can refer back to the discussion later. + +5. **Follow Up**: After the meeting, follow up with the participants by sending a summary of the discussion and any action items. This helps ensure that everyone is clear on the next steps and responsibilities. + +By following these steps and tips, you can effectively set up and use voice communication for your needs. diff --git a/src/archives/tests/deprecated-enterprise-versions.ts b/src/archives/tests/deprecated-enterprise-versions.ts index d5baff1c4188..05dfeb439d79 100644 --- a/src/archives/tests/deprecated-enterprise-versions.ts +++ b/src/archives/tests/deprecated-enterprise-versions.ts @@ -336,7 +336,7 @@ describe('JS and CSS assets', () => { expect(result.headers['x-is-archived']).toBeUndefined() expect(result.headers['content-type']).toBe('text/plain; charset=utf-8') expect(result.headers['cache-control']).toContain('public') - expect(result.headers['cache-control']).toMatch(/max-age=[1-9]/) + expect(result.headers['cache-control']).Match(/max-age=[1-9]/) }) test('404 if the pathname contains URL characters (@)', async () => { @@ -352,3 +352,11 @@ describe('JS and CSS assets', () => { expect(result.headers['cache-control']).toMatch(/max-age=[1-9]/) }) }) + +describe('voice communication documentation', () => { + test('verifies the presence of the new voice communication documentation', async () => { + const res = await get('/content/voice-communication.md') + expect(res.statusCode).toBe(200) + expect(res.headers['content-type']).toBe('text/markdown; charset=utf-8') + }) +})