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

إضافة وثائق الاتصال الصوتي #37151

Closed
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.<!-- markdownlint-disable-line search-replace -->

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).
31 changes: 31 additions & 0 deletions content/voice-communication.md
Original file line number Diff line number Diff line change
@@ -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.
10 changes: 9 additions & 1 deletion src/archives/tests/deprecated-enterprise-versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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]/)
Copy link
Preview

Copilot AI Mar 29, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The matcher method 'Match' is incorrect; it should be 'toMatch' to properly evaluate the regular expression.

Suggested change
expect(result.headers['cache-control']).Match(/max-age=[1-9]/)
expect(result.headers['cache-control']).toMatch(/max-age=[1-9]/)

Copilot is powered by AI, so mistakes are possible. Review output carefully before use.

})

test('404 if the pathname contains URL characters (@)', async () => {
Expand All @@ -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')
})
})
Loading