Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
ramyaparimi authored Nov 4, 2021
2 parents 2bfe24f + a33ff70 commit 8bcf19d
Show file tree
Hide file tree
Showing 24,550 changed files with 175,331 additions and 863,381 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ module.exports = {
babelOptions: { configFile: './.babelrc' },
sourceType: 'module',
},
ignorePatterns: ['tmp/*'],
rules: {
'import/no-extraneous-dependencies': ['error', { packageDir: '.' }],
},
Expand Down
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Closes [issue link]
### Check off the following:

- [ ] I have reviewed my changes in staging (look for "Automatically generated comment" and click **Modified** to view your latest changes).
- [ ] For content changes, I have completed the [self-review checklist](https://github.com/github/docs/blob/main/CONTRIBUTING.md#self-review).
- [ ] For content changes, I have completed the [self-review checklist](https://github.com/github/docs/blob/main/contributing/self-review.md).

### Writer impact (This section is for GitHub staff members only):

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/automerge.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: automerge
name: Automerge

# **What it does**: Pull requests with label "automerge" or "autosquash" will automatically merge.
# **Why we have it**: While now this is a feature built into GitHub, we still use it as part of other automation.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/autoupdate-branch.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: autoupdate branch
name: Autoupdate branch

# **What it does**: Any pull requests with "autoupdate" label will get main branch updates.
# **Why we have it**: Our repo-sync automation relies on it.
Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/crowdin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
name: Sync with Crowdin
if: github.repository == 'github/docs-internal'
runs-on: ubuntu-latest
# A sync's average run time is ~3.2 hours.
# This sets a maximum execution time of 300 minutes (5 hours) to prevent the workflow from running longer than necessary.
timeout-minutes: 300
steps:
- name: Checkout
uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97
Expand Down Expand Up @@ -59,3 +62,24 @@ jobs:
# See https://crowdin.com/settings#api-key to generate a token
# This token was created by logging into Crowdin with the octoglot user
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}

# When the maximum execution time is reached for this job, Actions cancels the workflow run.
# This emits a notification for the first responder to triage.
- name: Send Slack notification if workflow is cancelled
uses: someimportantcompany/github-actions-slack-message@f8d28715e7b8a4717047d23f48c39827cacad340
if: cancelled()
with:
channel: ${{ secrets.DOCS_ALERTS_SLACK_CHANNEL_ID }}
bot-token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }}
color: failure
text: The last Crowdin Sync run for ${{github.repository}} was cancelled. Please try running the workflow manually; see https://github.com/${{github.repository}}/actions/workflows/crowdin.yml

# Emit a notification for the first responder to triage if the workflow failed.
- name: Send Slack notification if workflow failed
uses: someimportantcompany/github-actions-slack-message@f8d28715e7b8a4717047d23f48c39827cacad340
if: failure()
with:
channel: ${{ secrets.DOCS_ALERTS_SLACK_CHANNEL_ID }}
bot-token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }}
color: failure
text: The last Crowdin Sync run for ${{github.repository}} failed. See https://github.com/${{github.repository}}/actions/workflows/crowdin.yml
36 changes: 36 additions & 0 deletions .github/workflows/link-check-ghec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: 'Link Checker: Enterprise Cloud'

# **What it does**: This checks links for GHEC version of docs.
# **Why we have it**: We want to know if links break.
# **Who does it impact**: Docs content.

on:
workflow_dispatch:
push:
branches:
- main
pull_request:

jobs:
build:
runs-on: ${{ fromJSON('["ubuntu-latest", "self-hosted"]')[github.repository == 'github/docs-internal'] }}
steps:
- name: Checkout
uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97

- name: Setup node
uses: actions/setup-node@270253e841af726300e85d718a5f606959b2903c
with:
node-version: 16.8.x
cache: npm

- name: Install
run: npm ci

- name: Build
run: npm run build

- name: 'Link check: Enterprise Cloud'
env:
DOCS_VERSION: 'enterprise-cloud'
run: npm run link-check
1 change: 1 addition & 0 deletions .github/workflows/move-ready-to-merge-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ on:

permissions:
pull-requests: write
issues: write

jobs:
unmark_for_review:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/site-policy-sync.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: site-policy-sync
name: Site policy sync

# **What it does**: Updates our site-policy repo when changes happen to site policy docs.
# **Why we have it**: We want keep site-policy repo up to date.
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/staging-build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

build-pr:
if: ${{ github.repository == 'github/docs-internal' || github.repository == 'github/docs' }}
runs-on: ubuntu-latest
runs-on: ${{ fromJSON('["ubuntu-latest", "self-hosted"]')[github.repository == 'github/docs-internal'] }}
timeout-minutes: 5
# This interrupts Build, Deploy, and pre-write Undeploy workflow runs in
# progress for this PR branch.
Expand Down Expand Up @@ -127,15 +127,11 @@ jobs:
app.json \
Procfile
ls -lh app.tar
zstd -q app.tar -o app.tar.zst
ls -lh app.tar.zst
# Upload only the files needed to run this application.
# We are not willing to trust the rest (e.g. script/) for the remainder
# of the deployment process.
- name: Upload build artifact
uses: actions/upload-artifact@27121b0bdffd731efa15d66772be8dc71245d074
with:
name: pr_build
path: app.tar.zst
path: app.tar
21 changes: 15 additions & 6 deletions .github/workflows/staging-deploy-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ jobs:
prepare-for-deploy:
needs: [pr-metadata, check-pr-before-prepare]
if: ${{ needs.check-pr-before-prepare.outputs.pull_request_state == 'open' }}
runs-on: ubuntu-latest
runs-on: ${{ fromJSON('["ubuntu-latest", "self-hosted"]')[github.repository == 'github/docs-internal'] }}
timeout-minutes: 5
# This interrupts Build, Deploy, and pre-write Undeploy workflow runs in
# progress for this PR branch.
Expand Down Expand Up @@ -323,14 +323,17 @@ jobs:
name: pr_build
path: ${{ runner.temp }}

- name: Extract user-changes to temp directory
# For security reasons, only extract the tar from docs-internal
# This allows us to add search indexes and early access content to the build
- if: ${{ github.repository == 'github/docs-internal' }}
name: Extract user-changes to temp directory
run: |
zstd -d -q $RUNNER_TEMP/app.tar.zst -o $RUNNER_TEMP/app.tar
mkdir $RUNNER_TEMP/app
tar -x --file=$RUNNER_TEMP/app.tar -C "$RUNNER_TEMP/app/"
# Move the LFS content into the temp directory in chunks (destructively)
- name: Move the LFS objects
- if: ${{ github.repository == 'github/docs-internal' }}
name: Move the LFS objects
run: |
git lfs ls-files --name-only | xargs -n 1 -I {} sh -c 'mkdir -p "$RUNNER_TEMP/app/$(dirname {})"; mv {} "$RUNNER_TEMP/app/$(dirname {})/"'
Expand All @@ -342,9 +345,15 @@ jobs:
mv content/early-access "$RUNNER_TEMP/app/content/"
mv data/early-access "$RUNNER_TEMP/app/data/"
- name: Create a gzipped archive
- if: ${{ github.repository == 'github/docs-internal' }}
name: Create a gzipped archive (docs-internal)
run: tar -cz --file app.tar.gz "$RUNNER_TEMP/app/"

# gzip the app.tar from github/docs so we're working with the same format
- if: ${{ github.repository == 'github/docs' }}
name: Create a gzipped archive (docs)
run: gzip -9 < "$RUNNER_TEMP/app.tar" > app.tar.gz

- name: Create a Heroku build source
id: build-source
uses: actions/github-script@2b34a689ec86a68d8ab9478298f91d5401337b7d
Expand Down Expand Up @@ -447,7 +456,7 @@ jobs:
deploy:
needs: [pr-metadata, prepare-for-deploy, check-pr-before-deploy]
if: ${{ needs.check-pr-before-deploy.outputs.pull_request_state == 'open' }}
runs-on: ubuntu-latest
runs-on: ${{ fromJSON('["ubuntu-latest", "self-hosted"]')[github.repository == 'github/docs-internal'] }}
timeout-minutes: 10
# This interrupts Build, Deploy, and pre-write Undeploy workflow runs in
# progress for this PR branch.
Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,17 @@ jobs:
strategy:
fail-fast: false
matrix:
test-group: [content, graphql, meta, rendering, routing, unit, linting]
test-group:
[
content,
graphql,
meta,
rendering,
routing,
unit,
linting,
translations,
]
steps:
- name: Check out repo
uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97
Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,17 @@ jobs:
fail-fast: false
matrix:
# The same array lives in test-windows.yml, so make any updates there too.
test-group: [content, graphql, meta, rendering, routing, unit, linting]
test-group:
[
content,
graphql,
meta,
rendering,
routing,
unit,
linting,
translations,
]
steps:
# Each of these ifs needs to be repeated at each step to make sure the required check still runs
# Even if if doesn't do anything
Expand Down
72 changes: 72 additions & 0 deletions .github/workflows/transfer-to-localization-repo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
name: Copy to REST API issue to docs-content

# **What it does**: Copies an issue in the open source repo to the docs-content repo, comments on and closes the original issue
# **Why we have it**: REST API updates cannot be made in the open source repo. Instead, we copy the issue to an internal issue (we do not transfer so that the issue does not disappear for the contributor) and close the original issue.
# **Who does it impact**: Open source and docs-content maintainers

permissions:
contents: write

on:
issues:
types:
- labeled

jobs:
transfer-issue:
name: Transfer issue
runs-on: ubuntu-latest
if: (github.event.label.name == 'localization ' && github.repository == 'github/docs')
steps:
- name: Check if this run was triggered by a member of the docs team
uses: actions/github-script@2b34a689ec86a68d8ab9478298f91d5401337b7d
id: triggered-by-member
with:
github-token: ${{secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES}}
result-encoding: string
script: |
const triggerer_login = context.payload.sender.login
const teamMembers = await github.request(
`/orgs/github/teams/docs/members?per_page=100`
)
const logins = teamMembers.data.map(member => member.login)
if (logins.includes(triggerer_login)) {
console.log(`This workflow was triggered by ${triggerer_login} (on the docs team).`)
return 'true'
}
console.log(`This workflow was triggered by ${triggerer_login} (not on the docs team), so no action will be taken.`)
return 'false'
- name: Exit if not triggered by a docs team member
if: steps.triggered-by-member.outputs.result == 'false'
run: |
echo Aborting. This workflow must be triggered by a member of the docs team.
exit 1
- name: Create an issue in the localization repo
run: |
new_issue_url="$(gh issue create --title "$ISSUE_TITLE" --body "$ISSUE_BODY" --repo github/localization)"
echo 'NEW_ISSUE='$new_issue_url >> $GITHUB_ENV
env:
GITHUB_TOKEN: ${{secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES}}
ISSUE_TITLE: ${{ github.event.issue.title }}
ISSUE_BODY: ${{ github.event.issue.body }}

- name: Comment on the new issue
run: gh issue comment $NEW_ISSUE --body "This issue was originally opened in the open source repo as $OLD_ISSUE"
env:
GITHUB_TOKEN: ${{secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES}}
NEW_ISSUE: ${{ env.NEW_ISSUE }}
OLD_ISSUE: ${{ github.event.issue.html_url }}

- name: Comment on the old issue
run: gh issue comment $OLD_ISSUE --body "Thank you for opening this issue! Updates to translated content must be made internally. I have copied your issue to an internal issue, so I will close this issue."
env:
GITHUB_TOKEN: ${{secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES}}
OLD_ISSUE: ${{ github.event.issue.html_url }}

- name: Close the old issue
run: gh issue close $OLD_ISSUE
env:
GITHUB_TOKEN: ${{secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES}}
OLD_ISSUE: ${{ github.event.issue.html_url }}
2 changes: 1 addition & 1 deletion .github/workflows/triage-stale-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
days-before-pr-stale: 7
days-before-pr-close: 3
stale-pr-label: 'stale'
exempt-pr-labels: 'waiting for review,never-stale'
exempt-pr-labels: 'waiting for review,never-stale, ready to merge'
stale_staff:
if: github.repository == 'github/docs'
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions Dockerfile.openapi_decorator
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ COPY --chown=node:node package-lock.json /openapi-check
ADD --chown=node:node script /openapi-check/script
ADD --chown=node:node lib /openapi-check/lib
ADD --chown=node:node content /openapi-check/content
ADD --chown=node:node data /openapi-check/data

RUN npm ci -D

Expand Down
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ Use the table of contents icon <img src="./assets/images/table-of-contents.png"

## Contributing

See [the contributing guide](CONTRIBUTING.md) for detailed instructions of how to get started with our project.
See [the contributing guide](CONTRIBUTING.md) for detailed instructions on how to get started with our project.

We accept different [types of contributions](https://github.com/github/docs/blob/main/contributing/types-of-contributions.md), including some that don't require you to write a single line of code.

On the GitHub Docs site, you can click the make a contribution button to open a PR for quick fixes like typos, updates, or link fixes.
On the GitHub Docs site, you can click the make a contribution button to open a PR(Pull Request) for quick fixes like typos, updates, or link fixes.

<img src="./assets/images/contribution_cta.png" width="400">

For more complex contributions, you can open an issue using the most appropriate [issue template](https://github.com/github/docs/issues/new/choose) to describe the changes you'd like to see.
For more complex contributions, you can open an issue using the most appropriate [issue template](https://github.com/github/docs/issues/new/choose) to describe the changes you'd like to see. By this way you can also be a part of Open source contributor's community without even writing a single line of code.

If you're looking for a way to contribute, you can scan through our [existing issues](https://github.com/github/docs/issues) for something to work on. When ready, check out [Getting Started with Contributing](/CONTRIBUTING.md) for detailed instructions.

### Join us in discussions

We use GitHub Discussions to talk about all sorts of topics related to documentation and this site. For example: if you'd like help troubleshooting a PR, have a great new idea, or want to share something amazing you've learned in our docs, join us in [discussions](https://github.com/github/docs/discussions).
We use GitHub Discussions to talk about all sorts of topics related to documentation and this site. For example: if you'd like help troubleshooting a PR, have a great new idea, or want to share something amazing you've learned in our docs, join us in the [discussions](https://github.com/github/docs/discussions).

### And that's it!

Expand All @@ -33,6 +33,7 @@ That's how you can easily become a member of the GitHub Documentation community.
## 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:
YOu can go through among them for specified details regarding the topics listed below.

- [content/README.md](content/README.md)
- [content/graphql/README.md](content/graphql/README.md)
Expand All @@ -54,9 +55,9 @@ In addition to the README you're reading right now, this repo includes other REA

The GitHub product documentation in the assets, content, and data folders are licensed under a [CC-BY license](LICENSE).

All other code in this repository is licensed under a [MIT license](LICENSE-CODE).
All other code in this repository is licensed under the [MIT license](LICENSE-CODE).

When using the GitHub logos, be sure to follow the [GitHub logo guidelines](https://github.com/logos).
When you are using the GitHub logos, be sure to follow the [GitHub logo guidelines](https://github.com/logos).

## Thanks :purple_heart:

Expand Down
Binary file modified assets/images/bad-screenshot-example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/enterprise/settings/referrer-policy-checkbox.png
Binary file modified assets/images/good-screenshot-example.png
Binary file modified assets/images/help/billing/codespaces-compute-storage.png
Binary file modified assets/images/help/billing/lfs-data.png
Binary file modified assets/images/help/billing/limit-or-unlimited-codespaces.png
Binary file modified assets/images/help/business-accounts/add-owner-button.png
Binary file modified assets/images/help/business-accounts/ghes-remove-owner.png
Binary file modified assets/images/help/classroom/assignments-click-online-ide.png
Binary file modified assets/images/help/classroom/download-grades.png
Binary file modified assets/images/help/classroom/vs-code-active-assignment.png
Binary file modified assets/images/help/codespaces/autofetch-search.png
Binary file modified assets/images/help/codespaces/browser-console-log-save.png
Binary file modified assets/images/help/codespaces/changes-in-files.png
Binary file modified assets/images/help/codespaces/choose-custom-machine-type.png
Binary file modified assets/images/help/codespaces/click-name-codespace.png
Binary file modified assets/images/help/codespaces/codespace-overview.png
Binary file modified assets/images/help/codespaces/codespaces-configure-features.png
Binary file modified assets/images/help/codespaces/codespaces-diagram.png
Binary file modified assets/images/help/codespaces/codespaces-option-secrets-org.png
Binary file modified assets/images/help/codespaces/delete-codespace-vscode.png
Binary file modified assets/images/help/codespaces/delete-codespace.png
Binary file modified assets/images/help/codespaces/export-changes-to-a-branch.png
Binary file modified assets/images/help/codespaces/find-codespace-id.png
Binary file modified assets/images/help/codespaces/find-codespace-name-github.png
Binary file modified assets/images/help/codespaces/github-pr-view.png
Binary file modified assets/images/help/codespaces/incorporating-codespaces.png
Binary file modified assets/images/help/codespaces/install-dotfiles.png
Binary file modified assets/images/help/codespaces/launch-default-editor.png
Binary file modified assets/images/help/codespaces/make-public-option.png
Binary file modified assets/images/help/codespaces/new-codespace-button.JPG
Binary file modified assets/images/help/codespaces/new-codespace-button.png
Binary file modified assets/images/help/codespaces/open-with-codespaces-pr.png
Binary file modified assets/images/help/codespaces/port-forwarding.png
Binary file modified assets/images/help/codespaces/python-extensions.png
Binary file modified assets/images/help/codespaces/quickstart-port-toast.png
Binary file modified assets/images/help/codespaces/resume-codespace.png
Binary file modified assets/images/help/codespaces/select-additional-features.png
Binary file modified assets/images/help/codespaces/select-default-editor.png
Binary file modified assets/images/help/codespaces/select-default-region.png
Binary file modified assets/images/help/codespaces/start-review.png
Binary file modified assets/images/help/codespaces/submit-review.png
Binary file modified assets/images/help/codespaces/suspend-current-codespace.png
Binary file modified assets/images/help/codespaces/update-port-protocol.png
Binary file modified assets/images/help/codespaces/your-codespaces-list.png
Binary file modified assets/images/help/copilot/example_robot.png
Binary file modified assets/images/help/discussions/create-issue-from-discussion.jpg
Binary file modified assets/images/help/enterprises/add-a-domain-button.png
Binary file modified assets/images/help/enterprises/audit-stream-add-azure.png
Binary file modified assets/images/help/enterprises/audit-stream-add-s3.png
Binary file modified assets/images/help/enterprises/audit-stream-add-splunk.png
Binary file modified assets/images/help/enterprises/audit-stream-check-splunk.png
Binary file modified assets/images/help/enterprises/audit-stream-check.png
Binary file modified assets/images/help/enterprises/audit-stream-choice-azure.png
Binary file modified assets/images/help/enterprises/audit-stream-choice-s3.png
Binary file modified assets/images/help/enterprises/audit-stream-choice-splunk.png
Binary file modified assets/images/help/enterprises/audit-stream-delete.png
Binary file modified assets/images/help/enterprises/audit-stream-pause.png
Binary file modified assets/images/help/enterprises/azure-connection-string.png
Binary file modified assets/images/help/enterprises/azure-event-hubs-list.png
Binary file modified assets/images/help/enterprises/azure-shared-access-policies.png
Binary file modified assets/images/help/enterprises/emu-pat-name.png
Binary file modified assets/images/help/enterprises/emu-pat-no-expiration.png
Binary file modified assets/images/help/enterprises/enterprise-pat-scope.png
Binary file modified assets/images/help/enterprises/okta-emu-enterprise-name.png
Binary file modified assets/images/help/enterprises/okta-emu-provisioning-to-app.png
Binary file modified assets/images/help/enterprises/okta-emu-to-app-menu.png
Binary file modified assets/images/help/enterprises/okta-emu-token.png
Binary file modified assets/images/help/enterprises/okta-emu-user-role.png
Binary file modified assets/images/help/enterprises/saml-recovery-codes-link.png
Binary file modified assets/images/help/images/deploy-graph.png
Binary file modified assets/images/help/images/oidc-architecture.png
Binary file modified assets/images/help/images/overview-actions-design.png
Binary file modified assets/images/help/images/overview-actions-event.png
Binary file modified assets/images/help/images/overview-actions-simple.png
Binary file modified assets/images/help/issues/issue-comment.png
Binary file modified assets/images/help/issues/issue-example.png
Binary file modified assets/images/help/issues/issue-project.png
Binary file modified assets/images/help/issues/issue-title-body.png
Binary file modified assets/images/help/issues/project_view.png
Binary file modified assets/images/help/issues/projects_table.png
Binary file modified assets/images/help/organizations/accept-terms-button.png
Binary file modified assets/images/help/organizations/account-settings-tos.png
Binary file modified assets/images/help/organizations/add-security-managers.png
Binary file modified assets/images/help/organizations/business-name-field.png
Binary file modified assets/images/help/organizations/button-sign-corporate-tos.png
Binary file modified assets/images/help/organizations/codespaces-sidebar-tab.png
Binary file modified assets/images/help/organizations/org_profile_with_overview.png
Binary file modified assets/images/help/organizations/people-tab-invite-member.png
Binary file modified assets/images/help/organizations/remove-security-managers.png
Binary file modified assets/images/help/organizations/security-overview.png
Binary file modified assets/images/help/organizations/sign-on-behalf-business.png
Binary file modified assets/images/help/organizations/start-a-free-trial-button.png
Binary file modified assets/images/help/pages/choose-theme.png
Binary file added assets/images/help/pages/verify-add-domain.png
Binary file added assets/images/help/pages/verify-button.png
Binary file added assets/images/help/pages/verify-continue.png
Binary file added assets/images/help/pages/verify-dns.png
Binary file added assets/images/help/pages/verify-enter-domain.png
Binary file modified assets/images/help/profile/org-profile-verified.png
Binary file modified assets/images/help/profile/org_profile_verified.png
Binary file modified assets/images/help/profile/user-profile-followers.png
Binary file modified assets/images/help/profile/user-profile-following.png
Binary file modified assets/images/help/profile/user-profile-image.png
Binary file modified assets/images/help/profile/user-profile-unfollow-button.png
Binary file modified assets/images/help/projects/example_board.png
Binary file added assets/images/help/projects/hidden-items.png
Binary file modified assets/images/help/projects/move_between_group.gif
Binary file modified assets/images/help/projects/status_example.png
Binary file modified assets/images/help/pull_requests/compare-branch-example.png
Binary file modified assets/images/help/pull_requests/pull-request-body.png
Binary file modified assets/images/help/releases/auto-generate-release-notes.png
Binary file modified assets/images/help/releases/delete-release-trash.png
Binary file modified assets/images/help/releases/edit-release-pencil.png
Binary file modified assets/images/help/releases/refreshed-compare-tags.png
Binary file modified assets/images/help/releases/refreshed-release-latest.png
Binary file modified assets/images/help/releases/release-compare-button.png
Binary file modified assets/images/help/releases/release-compare-menu.png
Binary file modified assets/images/help/releases/release-link.png
Binary file modified assets/images/help/releases/release-title-old.png
Binary file modified assets/images/help/releases/release-title.png
Binary file modified assets/images/help/releases/release-yml.png
Binary file modified assets/images/help/releases/releases-choose-branch.png
Binary file modified assets/images/help/releases/releases-tag-create-confirm.png
Binary file modified assets/images/help/releases/releases-tag-create.png
Binary file modified assets/images/help/releases/releases_description_auto.png
Binary file modified assets/images/help/releases/return-to-repository-main-page.PNG
Binary file modified assets/images/help/releases/search-releases.png
Binary file modified assets/images/help/repository/branching.png
Binary file modified assets/images/help/repository/citation-link.png
Binary file modified assets/images/help/repository/code-scanning-filter-keywords.png
Binary file modified assets/images/help/repository/code-scanning-results-check.png
Binary file modified assets/images/help/repository/diffs.png
Binary file modified assets/images/help/repository/first-commit.png
Binary file modified assets/images/help/repository/hello-world-repo.png
Binary file modified assets/images/help/repository/new-branch.png
Binary file modified assets/images/help/saml/confirm-saml-sso-enforcement.png
Binary file modified assets/images/help/saml/require-saml-sso-authentication.png
Binary file modified assets/images/help/saml/sso-has-been-enabled.png
Binary file modified assets/images/help/settings/actions-access-settings.png
Binary file modified assets/images/help/settings/actions-review-workflow-rerun.png
Binary file modified assets/images/help/settings/codespaces-audit-log-org.png
Binary file modified assets/images/help/settings/settings-sidebar-blocked-users.png
Binary file modified assets/images/help/settings/ssh-key-paste.png
Binary file modified assets/images/help/settings/tab-size-preference.png
Binary file modified assets/images/help/sponsors/add-a-welcome-message.png
Binary file modified assets/images/help/sponsors/unpublish-profile-dialog.png
Binary file added assets/images/help/support/account-field.png
Binary file added assets/images/help/support/from-field.png
Binary file added assets/images/help/support/priority-field.png
Binary file added assets/images/help/support/product-field.png
Binary file added assets/images/help/support/release-field.png
Binary file modified assets/images/help/writing/display-markdown-as-source.png
Binary file modified assets/images/help/writing/image-rendered.png
Binary file modified assets/images/help/writing/quoted-text-rendered.png
Binary file modified assets/images/help/writing/task_list_tracked.png
Binary file modified assets/images/installing-github-enterprise-server-on-aws.png
Binary file modified assets/images/playground/loading.gif
Binary file modified assets/images/screenshot-example.png
Binary file modified assets/images/site/rendered-footnote.png
Binary file modified assets/images/table-of-contents.png
Loading

0 comments on commit 8bcf19d

Please sign in to comment.