forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
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.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ on: | |
|
||
permissions: | ||
pull-requests: write | ||
issues: write | ||
|
||
jobs: | ||
unmark_for_review: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
BIN
-17.3 KB
(58%)
assets/images/enterprise/3.0/code-scanning-predefined-filters.png
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
BIN
-45 KB
(70%)
...ts/images/enterprise/3.0/security/advanced-security-phased-approach-diagram.png
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
BIN
-45 KB
(70%)
assets/images/enterprise/3.1/advanced-security-phased-approach-diagram.png
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
BIN
-6.07 KB
(63%)
...mages/enterprise/3.1/help/notifications-v2/watch-repository-options-custom2.png
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
BIN
-4.51 KB
(58%)
...s/images/enterprise/3.2/management-console/enable-dependency-graph-checkbox.png
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
BIN
-74.6 KB
(45%)
assets/images/enterprise/3.2/management-console/enable-security-checkboxes.png
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
BIN
-5.62 KB
(64%)
assets/images/enterprise/3.2/management-console/sidebar-security.png
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
BIN
-82.3 KB
(45%)
assets/images/enterprise/3.2/release-notes/actions-environments.png
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
BIN
-78.2 KB
(48%)
assets/images/enterprise/3.2/release-notes/code-scanning-alerts.png
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
BIN
-12.3 KB
(79%)
assets/images/enterprise/3.2/release-notes/security-overview-UI.png
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
BIN
-126 KB
(49%)
...images/enterprise/business-accounts/repository-permissions-policy-drop-down.png
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
BIN
-14.9 KB
(55%)
assets/images/enterprise/github-ae/confirm-disable-github-connect.png
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
BIN
-7.45 KB
(60%)
assets/images/enterprise/github-ae/disable-github-connect-button.png
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
BIN
-13.1 KB
(57%)
assets/images/enterprise/github-ae/enable-github-connect-button.png
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
BIN
-99.2 KB
(46%)
assets/images/enterprise/github-ae/enterprise-actions-policy-allow-list.png
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
BIN
-4.76 KB
(60%)
...ages/enterprise/github-ae/notifications-v2/watch-repository-options-custom2.png
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
BIN
-92.7 KB
(46%)
assets/images/enterprise/github-ae/organizations/actions-policy-allow-list.png
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
BIN
-80 KB
(50%)
...se/github-ae/organizations/security-and-analysis-disable-or-enable-all-ghae.png
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
BIN
-100 KB
(45%)
assets/images/enterprise/github-ae/repository/actions-policy-allow-list.png
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
BIN
-26.9 KB
(61%)
...ts/images/enterprise/github-ae/settings/authorize-ghae-to-connect-to-dotcom.png
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
BIN
-16.4 KB
(55%)
assets/images/enterprise/github-ae/settings/github.com-end-user-connection.png
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
BIN
-61 KB
(65%)
assets/images/enterprise/management-console/api-rate-limits-checkbox.png
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
BIN
-65.5 KB
(68%)
assets/images/enterprise/management-console/git-rate-limits-checkbox.png
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
BIN
-179 KB
(81%)
assets/images/enterprise/management-console/lets-encrypt-status.png
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
BIN
-53.8 KB
(66%)
assets/images/enterprise/management-console/secondary-rate-limits-checkbox.png
Oops, something went wrong.
Binary file modified
BIN
-45 KB
(70%)
assets/images/enterprise/security/advanced-security-phased-approach-diagram.png
Oops, something went wrong.
Binary file modified
BIN
-35.1 KB
(47%)
assets/images/enterprise/settings/referrer-policy-checkbox.png
Oops, something went wrong.
Binary file modified
BIN
-18.2 KB
(48%)
assets/images/enterprise/settings/referrer-policy-save-button.png
Oops, something went wrong.
Binary file modified
BIN
-29.7 KB
(66%)
assets/images/enterprise/site-admin-settings/access-repo-security-info.png
Oops, something went wrong.
Binary file modified
BIN
-6.13 KB
(53%)
...ts/images/enterprise/site-admin-settings/add-global-webhook-active-checkbox.png
Oops, something went wrong.
Binary file modified
BIN
-30.6 KB
(47%)
...images/enterprise/site-admin-settings/add-global-webhook-disable-ssl-button.png
Oops, something went wrong.
Binary file modified
BIN
-29.3 KB
(47%)
assets/images/enterprise/site-admin-settings/add-global-webhook-select-events.png
Oops, something went wrong.
Binary file modified
BIN
-96.4 KB
(48%)
...site-admin-settings/add-global-webhook-select-individual-events-ghes-and-ae.png
Oops, something went wrong.
Binary file modified
BIN
-111 KB
(48%)
.../enterprise/site-admin-settings/add-global-webhook-select-individual-events.png
Oops, something went wrong.
Binary file modified
BIN
-46.8 KB
(67%)
assets/images/enterprise/site-admin-settings/confirm-unlock-repo-access.png
Oops, something went wrong.
Binary file modified
BIN
-6.94 KB
(61%)
assets/images/enterprise/site-admin-settings/display-repository-admin-summary.png
Oops, something went wrong.
Binary file modified
BIN
-21.5 KB
(58%)
.../images/enterprise/site-admin-settings/dotcom-ghe-connection-request-access.png
Oops, something went wrong.
Binary file modified
BIN
-40.8 KB
(52%)
...ages/enterprise/site-admin-settings/enable-marketplace-actions-drop-down-ae.png
Oops, something went wrong.
Binary file modified
BIN
-11.1 KB
(52%)
assets/images/enterprise/site-admin-settings/exit-admin-page-for-repository.png
Oops, something went wrong.
Binary file modified
BIN
-26.1 KB
(54%)
assets/images/enterprise/site-admin-settings/unlock-priviledged-repo-access.png
Oops, something went wrong.
Binary file modified
BIN
-49.9 KB
(39%)
assets/images/github-apps/device_authorization_page_for_user_code.png
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-17 KB
(42%)
assets/images/help/billing/billing-information-edit-button.png
Oops, something went wrong.
Binary file modified
BIN
-14.9 KB
(41%)
assets/images/help/billing/billing-payment-method-edit-button.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-32.5 KB
(43%)
assets/images/help/billing/limit-or-unlimited-codespaces.png
Oops, something went wrong.
Binary file modified
BIN
-18 KB
(47%)
assets/images/help/business-accounts/add-administrator-add-button.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+221 KB
assets/images/help/business-accounts/dormant-users-download-button.png
Oops, something went wrong.
Binary file modified
BIN
-7.13 KB
(77%)
assets/images/help/business-accounts/enterprise-account-add-org.png
Oops, something went wrong.
Binary file modified
BIN
-7.92 KB
(67%)
assets/images/help/business-accounts/enterprise-account-github-connect-tab.png
Oops, something went wrong.
Binary file modified
BIN
-32.8 KB
(48%)
assets/images/help/business-accounts/enterprise-account-invitation-sent.png
Oops, something went wrong.
Binary file modified
BIN
-6.67 KB
(76%)
assets/images/help/business-accounts/enterprise-account-invite-organization.png
Oops, something went wrong.
Binary file modified
BIN
-9.04 KB
(77%)
assets/images/help/business-accounts/enterprise-account-pending.png
Oops, something went wrong.
Binary file modified
BIN
-4.26 KB
(74%)
...ts/images/help/business-accounts/enterprise-account-search-for-organization.png
Oops, something went wrong.
Binary file modified
BIN
-10.2 KB
(72%)
assets/images/help/business-accounts/enterprise-account-transfer-approve.png
Oops, something went wrong.
Binary file added
BIN
+189 KB
assets/images/help/business-accounts/enterprise-accounts-compliance-tab.png
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-5.84 KB
(55%)
assets/images/help/business-accounts/invite-admins-modal-button.png
Oops, something went wrong.
Binary file modified
BIN
-79.3 KB
(74%)
assets/images/help/business-accounts/repository-invitation-policy-drop-down.png
Oops, something went wrong.
Binary file modified
BIN
-55.6 KB
(54%)
assets/images/help/business-accounts/repository-permissions-policy-drop-down.png
Oops, something went wrong.
Binary file modified
BIN
-69.1 KB
(54%)
assets/images/help/classroom/assignments-click-online-ide.png
Oops, something went wrong.
Binary file modified
BIN
-11 Bytes
(100%)
assets/images/help/classroom/assignments-create-first-assignment.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-2.53 KB
(49%)
assets/images/help/codespaces/codespaces-configure-features.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-5.32 KB
(64%)
assets/images/help/codespaces/codespaces-option-secrets-org.png
Oops, something went wrong.
Binary file modified
BIN
-21.2 KB
(56%)
assets/images/help/codespaces/codespaces-region-selector-radio-buttons.png
Oops, something went wrong.
Binary file modified
BIN
-194 Bytes
(100%)
assets/images/help/codespaces/delete-codespace-vscode.png
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-31.9 KB
(49%)
assets/images/help/codespaces/export-changes-to-a-branch.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+26.8 KB
assets/images/help/command-palette/command-palette-command-change-theme.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+324 KB
assets/images/help/command-palette/command-palette-navigation-current-scope.png
Oops, something went wrong.
Binary file added
BIN
+25.5 KB
assets/images/help/command-palette/command-palette-navigation-repo-default.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-13 Bytes
(100%)
assets/images/help/desktop/create-branch-from-commit-context-menu.png
Oops, something went wrong.
Binary file modified
BIN
-4.81 KB
(91%)
assets/images/help/discussions/create-issue-from-discussion.jpg
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-22.7 KB
(36%)
assets/images/help/enterprises/audit-log-export-drop-down-menus.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-47.4 KB
(48%)
assets/images/help/enterprises/audit-stream-choice-azure.png
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-45.7 KB
(49%)
assets/images/help/enterprises/audit-stream-choice-splunk.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-59.7 KB
(67%)
assets/images/help/enterprises/azure-shared-access-policies.png
Oops, something went wrong.
Binary file modified
BIN
-121 KB
(46%)
assets/images/help/enterprises/continue-verifying-domain-enterprise.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-24.3 KB
(44%)
assets/images/help/enterprises/enterprise-account-identity-provider-tab.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-27.4 KB
(70%)
assets/images/help/enterprises/okta-emu-provisioning-to-app.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-120 KB
(61%)
...s/images/help/enterprises/restrict-email-notifications-to-domain-enterprise.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
assets/images/help/images/example-script-injection-mitigated.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-59.3 KB
(73%)
assets/images/help/issues/quickstart-create-large-initiative-issue.png
Oops, something went wrong.
Binary file modified
BIN
-44.1 KB
(73%)
assets/images/help/issues/quickstart-creating-issue-template.png
Oops, something went wrong.
Binary file modified
BIN
-14.8 KB
(35%)
assets/images/help/notifications-v2/unsubscribe-from-main-inbox.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-49.8 KB
(50%)
assets/images/help/organizations/button-sign-corporate-tos.png
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-102 KB
(47%)
assets/images/help/organizations/continue-verifying-domain.png
Oops, something went wrong.
Binary file modified
BIN
-44.8 KB
(48%)
assets/images/help/organizations/enterprise-cloud-trial-option.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-44.6 KB
(73%)
assets/images/help/organizations/org_profile_with_overview.png
Oops, something went wrong.
Binary file modified
BIN
-67.5 KB
(73%)
assets/images/help/organizations/org_profile_with_overview.png .png
Oops, something went wrong.
Binary file modified
BIN
-6.66 KB
(72%)
assets/images/help/organizations/organization-people-tab-with-overview-tab.png
Oops, something went wrong.
Binary file modified
BIN
-7.64 KB
(71%)
assets/images/help/organizations/organization-projects-tab-with-overview-tab.png
Oops, something went wrong.
Binary file modified
BIN
-9.48 KB
(69%)
assets/images/help/organizations/organization-settings-tab-with-overview-tab.png
Oops, something went wrong.
Binary file modified
BIN
-7.22 KB
(71%)
assets/images/help/organizations/organization-teams-tab-with-overview.png
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
+2.45 KB
(110%)
assets/images/help/organizations/people-tab-invite-member-ghe.png
Oops, something went wrong.
Binary file modified
BIN
+2.41 KB
(100%)
assets/images/help/organizations/people-tab-invite-member.png
Oops, something went wrong.
Binary file modified
BIN
-43.4 KB
(44%)
assets/images/help/organizations/remove-security-managers.png
Oops, something went wrong.
Binary file modified
BIN
-122 KB
(60%)
assets/images/help/organizations/repo-access-security-managers.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+8.24 KB
assets/images/help/organizations/repository-role-creation-confirm.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-132 KB
(47%)
assets/images/help/organizations/restrict-email-notifications-to-domain.png
Oops, something went wrong.
Binary file modified
BIN
-8.98 KB
(75%)
assets/images/help/organizations/security-overview-show-more-button.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-51.2 KB
(55%)
assets/images/help/organizations/start-a-free-trial-button.png
Oops, something went wrong.
Binary file added
BIN
+34.1 KB
assets/images/help/package-registry/manage-codespaces-access-blank.png
Oops, something went wrong.
Binary file added
BIN
+33.5 KB
assets/images/help/package-registry/manage-codespaces-access-item.png
Oops, something went wrong.
Binary file added
BIN
+40.9 KB
assets/images/help/package-registry/manage-codespaces-access-search.png
Oops, something went wrong.
Binary file modified
BIN
-5.69 KB
(72%)
assets/images/help/package-registry/org-tab-for-packages-with-overview-tab.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-56.1 KB
(79%)
assets/images/help/profile/verified_org_profile_with_overview_landing_page.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-2.53 KB
(64%)
assets/images/help/releases/draft-release-button-with-search.png
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-16.7 KB
(57%)
assets/images/help/releases/refreshed-compare-tags-menu-options.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-58.1 KB
(53%)
assets/images/help/releases/refreshed-releases-overview-with-contributors.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-111 KB
(65%)
assets/images/help/releases/releases-overview-with-contributors.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-4.06 KB
(73%)
assets/images/help/releases/return-to-repository-main-page.PNG
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-25.2 KB
(65%)
assets/images/help/repository/code-scanning-analysis-not-found.png
Oops, something went wrong.
Binary file modified
BIN
-54.5 KB
(53%)
assets/images/help/repository/code-scanning-filter-keywords.png
Oops, something went wrong.
Binary file modified
BIN
-9.19 KB
(49%)
assets/images/help/repository/code-scanning-library-alert-index.png
Oops, something went wrong.
Binary file modified
BIN
-11 KB
(55%)
assets/images/help/repository/code-scanning-library-alert-show.png
Oops, something went wrong.
Binary file modified
BIN
-18 KB
(58%)
assets/images/help/repository/code-scanning-predefined-filters.png
Oops, something went wrong.
Binary file modified
BIN
-82.5 KB
(46%)
assets/images/help/repository/code-scanning-results-check.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-42.8 KB
(48%)
assets/images/help/repository/secret-scanning-confirm-deletion-custom-pattern.png
Oops, something went wrong.
Binary file modified
BIN
-89.4 KB
(45%)
assets/images/help/repository/secret-scanning-create-custom-pattern.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-24.3 KB
(50%)
assets/images/help/settings/actions-review-workflow-rerun.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
+3.53 KB
(150%)
assets/images/help/settings/settings-sidebar-blocked-users.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.