diff --git a/content/actions/hosting-your-own-runners/managing-self-hosted-runners/running-scripts-before-or-after-a-job.md b/content/actions/hosting-your-own-runners/managing-self-hosted-runners/running-scripts-before-or-after-a-job.md index 33b3eb2a7e09..868b49d281d4 100644 --- a/content/actions/hosting-your-own-runners/managing-self-hosted-runners/running-scripts-before-or-after-a-job.md +++ b/content/actions/hosting-your-own-runners/managing-self-hosted-runners/running-scripts-before-or-after-a-job.md @@ -53,7 +53,7 @@ The custom scripts must be located on the runner, but should not be stored in th The scripts are automatically executed when the runner has the following environment variables containing an absolute path to the script: - `ACTIONS_RUNNER_HOOK_JOB_STARTED`: The script defined in this environment variable is triggered when a job has been assigned to a runner, but before the job starts running. -- `ACTIONS_RUNNER_HOOK_JOB_COMPLETED`: The script defined in this environment variable is triggered after the job has finished processing. +- `ACTIONS_RUNNER_HOOK_JOB_COMPLETED`: The script defined in this environment variable is triggered at the end of the job, after all the steps defined in the workflow have run. To set these environment variables, you can either add them to the operating system, or add them to a file named `.env` within the self-hosted runner application directory (that is, the directory into which you downloaded and unpacked the runner software). For example, the following `.env` entry will have the runner automatically run a script, saved as `/opt/runner/cleanup_script.sh` on the runner machine, before each job runs: @@ -61,6 +61,12 @@ To set these environment variables, you can either add them to the operating sys ACTIONS_RUNNER_HOOK_JOB_STARTED=/opt/runner/cleanup_script.sh ``` +{% note %} + +**Note**: The script defined in `ACTIONS_RUNNER_HOOK_JOB_COMPLETED` is executed at the end of the job, before the job completes. This makes it unsuitable for use cases that may interrupt a runner, such as deleting the runner machine as part of an autoscaling implementation. + +{% endnote %} + ## Troubleshooting ### Permission denied diff --git a/content/billing/managing-your-license-for-github-enterprise/syncing-license-usage-between-github-enterprise-server-and-github-enterprise-cloud.md b/content/billing/managing-your-license-for-github-enterprise/syncing-license-usage-between-github-enterprise-server-and-github-enterprise-cloud.md index 0524b403c1ac..bfed6cc4ec02 100644 --- a/content/billing/managing-your-license-for-github-enterprise/syncing-license-usage-between-github-enterprise-server-and-github-enterprise-cloud.md +++ b/content/billing/managing-your-license-for-github-enterprise/syncing-license-usage-between-github-enterprise-server-and-github-enterprise-cloud.md @@ -38,7 +38,7 @@ After you enable {% data variables.product.prodname_github_connect %}, license d ### Triggering a license sync job 1. Sign in to your {% data variables.product.prodname_ghe_server %} instance. -{% data reusables.enterprise-accounts.access-enterprise %} +{% data reusables.enterprise-accounts.access-enterprise-ghes %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.license-tab %} 1. Under "License sync", click {% octicon "sync" aria-hidden="true" %} **Sync now**. @@ -49,7 +49,8 @@ After you enable {% data variables.product.prodname_github_connect %}, license d You can download a JSON file from {% data variables.product.prodname_ghe_server %} and upload the file to {% data variables.product.prodname_ghe_cloud %} to manually sync user license usage between the two deployments. -{% data reusables.enterprise-accounts.access-enterprise %} +1. Sign in to your {% data variables.product.prodname_ghe_server %} instance. +{% data reusables.enterprise-accounts.access-enterprise-ghes %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.license-tab %} 1. In the "User licenses" section, under "Quick links", to download a file containing your current license usage on {% data variables.product.prodname_ghe_server %}, click **Export license usage**. diff --git a/content/code-security/secret-scanning/about-secret-scanning.md b/content/code-security/secret-scanning/about-secret-scanning.md index 3335c22d8548..b7b820b44989 100644 --- a/content/code-security/secret-scanning/about-secret-scanning.md +++ b/content/code-security/secret-scanning/about-secret-scanning.md @@ -26,7 +26,7 @@ topics: If your project communicates with an external service, you might use a token or private key for authentication. Tokens and private keys are examples of secrets that a service provider can issue. If you check a secret into a repository, anyone who has read access to the repository can use the secret to access the external service with your privileges. We recommend that you store secrets in a dedicated, secure location outside of the repository for your project. -{% data variables.product.prodname_secret_scanning_caps %} will scan your entire Git history on all branches present in your {% data variables.product.prodname_dotcom %} repository for secrets{% ifversion ghec or ghes or ghae %}, even if the repository is archived{% endif %}. {% ifversion secret-scanning-issue-body-comments %}{% data reusables.secret-scanning.scan-issue-description-and-comments %}{% endif %} +{% data variables.product.prodname_secret_scanning_caps %} will scan your entire Git history on all branches present in your {% data variables.product.prodname_dotcom %} repository for secrets{% ifversion ghec or ghes or ghae %}, even if the repository is archived{% endif %}. {% ifversion secret-scanning-issue-body-comments %}{% data reusables.secret-scanning.scan-issue-description-and-comments %}{% else %}{% data variables.product.prodname_secret_scanning_caps %} does not scan issues.{% endif %} {% ifversion secret-scanning-backfills-historical-issues %} Additionally, {% data variables.product.prodname_secret_scanning %} scans the titles, descriptions, and comments, in open and closed historical issues, and reports leaked secrets as alerts on {% data variables.product.prodname_dotcom %}{% ifversion ghec %}. A notification is sent to the relevant partner when a historical partner pattern is detected{% endif %}. diff --git a/content/codespaces/developing-in-codespaces/connecting-to-a-private-network.md b/content/codespaces/developing-in-a-codespace/connecting-to-a-private-network.md similarity index 97% rename from content/codespaces/developing-in-codespaces/connecting-to-a-private-network.md rename to content/codespaces/developing-in-a-codespace/connecting-to-a-private-network.md index cf8db654c0d1..b589273d36ab 100644 --- a/content/codespaces/developing-in-codespaces/connecting-to-a-private-network.md +++ b/content/codespaces/developing-in-a-codespace/connecting-to-a-private-network.md @@ -9,6 +9,8 @@ topics: - Codespaces - Fundamentals - Developer +redirect_from: + - /codespaces/developing-in-codespaces/connecting-to-a-private-network --- ## About codespace networking diff --git a/content/codespaces/developing-in-codespaces/creating-a-codespace-for-a-repository.md b/content/codespaces/developing-in-a-codespace/creating-a-codespace-for-a-repository.md similarity index 99% rename from content/codespaces/developing-in-codespaces/creating-a-codespace-for-a-repository.md rename to content/codespaces/developing-in-a-codespace/creating-a-codespace-for-a-repository.md index a7bc660fba10..6bc6e54c198b 100644 --- a/content/codespaces/developing-in-codespaces/creating-a-codespace-for-a-repository.md +++ b/content/codespaces/developing-in-a-codespace/creating-a-codespace-for-a-repository.md @@ -5,6 +5,7 @@ redirect_from: - /github/developing-online-with-github-codespaces/creating-a-codespace - /github/developing-online-with-codespaces/creating-a-codespace - /codespaces/developing-in-codespaces/creating-a-codespace + - /codespaces/developing-in-codespaces/creating-a-codespace-for-a-repository versions: fpt: '*' ghec: '*' diff --git a/content/codespaces/developing-in-codespaces/creating-a-codespace-from-a-template.md b/content/codespaces/developing-in-a-codespace/creating-a-codespace-from-a-template.md similarity index 98% rename from content/codespaces/developing-in-codespaces/creating-a-codespace-from-a-template.md rename to content/codespaces/developing-in-a-codespace/creating-a-codespace-from-a-template.md index 86af26757e08..efef5bab9df8 100644 --- a/content/codespaces/developing-in-codespaces/creating-a-codespace-from-a-template.md +++ b/content/codespaces/developing-in-a-codespace/creating-a-codespace-from-a-template.md @@ -10,6 +10,8 @@ topics: - Fundamentals - Developer shortTitle: Create a codespace from a template +redirect_from: + - /codespaces/developing-in-codespaces/creating-a-codespace-from-a-template --- ## About templates for {% data variables.product.prodname_github_codespaces %} diff --git a/content/codespaces/developing-in-codespaces/default-environment-variables-for-your-codespace.md b/content/codespaces/developing-in-a-codespace/default-environment-variables-for-your-codespace.md similarity index 95% rename from content/codespaces/developing-in-codespaces/default-environment-variables-for-your-codespace.md rename to content/codespaces/developing-in-a-codespace/default-environment-variables-for-your-codespace.md index 893d29f97e7a..753634662bb8 100644 --- a/content/codespaces/developing-in-codespaces/default-environment-variables-for-your-codespace.md +++ b/content/codespaces/developing-in-a-codespace/default-environment-variables-for-your-codespace.md @@ -10,6 +10,8 @@ topics: - Codespaces - Fundamentals - Developer +redirect_from: + - /codespaces/developing-in-codespaces/default-environment-variables-for-your-codespace --- ## About default environment variables diff --git a/content/codespaces/developing-in-codespaces/deleting-a-codespace.md b/content/codespaces/developing-in-a-codespace/deleting-a-codespace.md similarity index 98% rename from content/codespaces/developing-in-codespaces/deleting-a-codespace.md rename to content/codespaces/developing-in-a-codespace/deleting-a-codespace.md index 80746ffaa231..03c5aa02840a 100644 --- a/content/codespaces/developing-in-codespaces/deleting-a-codespace.md +++ b/content/codespaces/developing-in-a-codespace/deleting-a-codespace.md @@ -4,6 +4,7 @@ intro: You can delete a codespace you no longer need. redirect_from: - /github/developing-online-with-github-codespaces/deleting-a-codespace - /github/developing-online-with-codespaces/deleting-a-codespace + - /codespaces/developing-in-codespaces/deleting-a-codespace versions: fpt: '*' ghec: '*' diff --git a/content/codespaces/developing-in-codespaces/developing-in-a-codespace.md b/content/codespaces/developing-in-a-codespace/developing-in-a-codespace.md similarity index 99% rename from content/codespaces/developing-in-codespaces/developing-in-a-codespace.md rename to content/codespaces/developing-in-a-codespace/developing-in-a-codespace.md index c7816aa4a8e6..360c0b1d911d 100644 --- a/content/codespaces/developing-in-codespaces/developing-in-a-codespace.md +++ b/content/codespaces/developing-in-a-codespace/developing-in-a-codespace.md @@ -4,6 +4,7 @@ intro: 'You can work in a codespace using your browser, {% data variables.produc redirect_from: - /github/developing-online-with-github-codespaces/developing-in-a-codespace - /github/developing-online-with-codespaces/developing-in-a-codespace + - /codespaces/developing-in-codespaces/developing-in-a-codespace versions: fpt: '*' ghec: '*' diff --git a/content/codespaces/developing-in-codespaces/forwarding-ports-in-your-codespace.md b/content/codespaces/developing-in-a-codespace/forwarding-ports-in-your-codespace.md similarity index 99% rename from content/codespaces/developing-in-codespaces/forwarding-ports-in-your-codespace.md rename to content/codespaces/developing-in-a-codespace/forwarding-ports-in-your-codespace.md index ff5c9b2d115a..7ac72db934cf 100644 --- a/content/codespaces/developing-in-codespaces/forwarding-ports-in-your-codespace.md +++ b/content/codespaces/developing-in-a-codespace/forwarding-ports-in-your-codespace.md @@ -7,6 +7,7 @@ versions: ghec: '*' redirect_from: - /github/developing-online-with-codespaces/forwarding-ports-in-your-codespace + - /codespaces/developing-in-codespaces/forwarding-ports-in-your-codespace type: how_to topics: - Codespaces diff --git a/content/codespaces/developing-in-codespaces/getting-started-with-github-codespaces-for-machine-learning.md b/content/codespaces/developing-in-a-codespace/getting-started-with-github-codespaces-for-machine-learning.md similarity index 98% rename from content/codespaces/developing-in-codespaces/getting-started-with-github-codespaces-for-machine-learning.md rename to content/codespaces/developing-in-a-codespace/getting-started-with-github-codespaces-for-machine-learning.md index f9428c5021ab..ac089c8d5cea 100644 --- a/content/codespaces/developing-in-codespaces/getting-started-with-github-codespaces-for-machine-learning.md +++ b/content/codespaces/developing-in-a-codespace/getting-started-with-github-codespaces-for-machine-learning.md @@ -9,6 +9,8 @@ type: tutorial topics: - Codespaces - Developer +redirect_from: + - /codespaces/developing-in-codespaces/getting-started-with-github-codespaces-for-machine-learning --- ## Introduction diff --git a/content/codespaces/developing-in-codespaces/index.md b/content/codespaces/developing-in-a-codespace/index.md similarity index 95% rename from content/codespaces/developing-in-codespaces/index.md rename to content/codespaces/developing-in-a-codespace/index.md index c45e7357af5b..6f605d5d72e8 100644 --- a/content/codespaces/developing-in-codespaces/index.md +++ b/content/codespaces/developing-in-a-codespace/index.md @@ -25,4 +25,7 @@ children: - /using-github-codespaces-in-visual-studio-code - /using-github-codespaces-in-your-jetbrains-ide - /using-github-codespaces-with-github-cli +redirect_from: + - /codespaces/developing-in-codespaces --- + diff --git a/content/codespaces/developing-in-codespaces/opening-an-existing-codespace.md b/content/codespaces/developing-in-a-codespace/opening-an-existing-codespace.md similarity index 98% rename from content/codespaces/developing-in-codespaces/opening-an-existing-codespace.md rename to content/codespaces/developing-in-a-codespace/opening-an-existing-codespace.md index 042fd42d0523..c5aab6569c16 100644 --- a/content/codespaces/developing-in-codespaces/opening-an-existing-codespace.md +++ b/content/codespaces/developing-in-a-codespace/opening-an-existing-codespace.md @@ -10,6 +10,8 @@ topics: - Fundamentals - Developer shortTitle: Open an existing codespace +redirect_from: + - /codespaces/developing-in-codespaces/opening-an-existing-codespace --- {% jetbrains_beta %} diff --git a/content/codespaces/developing-in-codespaces/persisting-environment-variables-and-temporary-files.md b/content/codespaces/developing-in-a-codespace/persisting-environment-variables-and-temporary-files.md similarity index 98% rename from content/codespaces/developing-in-codespaces/persisting-environment-variables-and-temporary-files.md rename to content/codespaces/developing-in-a-codespace/persisting-environment-variables-and-temporary-files.md index fe80d0394df0..8c2c9ad6ef87 100644 --- a/content/codespaces/developing-in-codespaces/persisting-environment-variables-and-temporary-files.md +++ b/content/codespaces/developing-in-a-codespace/persisting-environment-variables-and-temporary-files.md @@ -10,6 +10,8 @@ topics: - Fundamentals - Developer shortTitle: Persist variables and files +redirect_from: + - /codespaces/developing-in-codespaces/persisting-environment-variables-and-temporary-files --- ## Setting persistent environment variables diff --git a/content/codespaces/developing-in-codespaces/rebuilding-the-container-in-a-codespace.md b/content/codespaces/developing-in-a-codespace/rebuilding-the-container-in-a-codespace.md similarity index 98% rename from content/codespaces/developing-in-codespaces/rebuilding-the-container-in-a-codespace.md rename to content/codespaces/developing-in-a-codespace/rebuilding-the-container-in-a-codespace.md index fe1936eff3bd..b079757d8ed9 100644 --- a/content/codespaces/developing-in-codespaces/rebuilding-the-container-in-a-codespace.md +++ b/content/codespaces/developing-in-a-codespace/rebuilding-the-container-in-a-codespace.md @@ -10,6 +10,7 @@ topics: shortTitle: Rebuilding a container redirect_from: - /codespaces/codespaces-reference/performing-a-full-rebuild-of-a-container + - /codespaces/developing-in-codespaces/rebuilding-the-container-in-a-codespace --- ## About rebuilding a container diff --git a/content/codespaces/developing-in-codespaces/stopping-and-starting-a-codespace.md b/content/codespaces/developing-in-a-codespace/stopping-and-starting-a-codespace.md similarity index 97% rename from content/codespaces/developing-in-codespaces/stopping-and-starting-a-codespace.md rename to content/codespaces/developing-in-a-codespace/stopping-and-starting-a-codespace.md index 0f0a09f0f1c1..02916d0315c0 100644 --- a/content/codespaces/developing-in-codespaces/stopping-and-starting-a-codespace.md +++ b/content/codespaces/developing-in-a-codespace/stopping-and-starting-a-codespace.md @@ -10,6 +10,8 @@ topics: - Fundamentals - Developer shortTitle: Stop a codespace +redirect_from: + - /codespaces/developing-in-codespaces/stopping-and-starting-a-codespace --- {% jetbrains_beta %} diff --git a/content/codespaces/developing-in-codespaces/using-github-codespaces-for-pull-requests.md b/content/codespaces/developing-in-a-codespace/using-github-codespaces-for-pull-requests.md similarity index 98% rename from content/codespaces/developing-in-codespaces/using-github-codespaces-for-pull-requests.md rename to content/codespaces/developing-in-a-codespace/using-github-codespaces-for-pull-requests.md index 95cf1e192e94..bc64e5c89d85 100644 --- a/content/codespaces/developing-in-codespaces/using-github-codespaces-for-pull-requests.md +++ b/content/codespaces/developing-in-a-codespace/using-github-codespaces-for-pull-requests.md @@ -12,6 +12,7 @@ topics: - Developer redirect_from: - /codespaces/developing-in-codespaces/using-codespaces-for-pull-requests + - /codespaces/developing-in-codespaces/using-github-codespaces-for-pull-requests --- Using a codespace to work on a pull request gives you all the benefits of {% data variables.product.prodname_github_codespaces %}. For more information, see "[AUTOTITLE](/codespaces/overview#benefits-of-github-codespaces)." diff --git a/content/codespaces/developing-in-codespaces/using-github-codespaces-in-visual-studio-code.md b/content/codespaces/developing-in-a-codespace/using-github-codespaces-in-visual-studio-code.md similarity index 98% rename from content/codespaces/developing-in-codespaces/using-github-codespaces-in-visual-studio-code.md rename to content/codespaces/developing-in-a-codespace/using-github-codespaces-in-visual-studio-code.md index bfb7923ebe91..0206654eae99 100644 --- a/content/codespaces/developing-in-codespaces/using-github-codespaces-in-visual-studio-code.md +++ b/content/codespaces/developing-in-a-codespace/using-github-codespaces-in-visual-studio-code.md @@ -7,6 +7,7 @@ redirect_from: - /github/developing-online-with-codespaces/connecting-to-your-codespace-from-visual-studio-code - /github/developing-online-with-codespaces/using-codespaces-in-visual-studio - /codespaces/developing-in-codespaces/using-codespaces-in-visual-studio-code + - /codespaces/developing-in-codespaces/using-github-codespaces-in-visual-studio-code versions: fpt: '*' ghec: '*' diff --git a/content/codespaces/developing-in-codespaces/using-github-codespaces-in-your-jetbrains-ide.md b/content/codespaces/developing-in-a-codespace/using-github-codespaces-in-your-jetbrains-ide.md similarity index 98% rename from content/codespaces/developing-in-codespaces/using-github-codespaces-in-your-jetbrains-ide.md rename to content/codespaces/developing-in-a-codespace/using-github-codespaces-in-your-jetbrains-ide.md index 7a4aa6952dc6..56bfc4727d30 100644 --- a/content/codespaces/developing-in-codespaces/using-github-codespaces-in-your-jetbrains-ide.md +++ b/content/codespaces/developing-in-a-codespace/using-github-codespaces-in-your-jetbrains-ide.md @@ -9,6 +9,8 @@ type: how_to topics: - Codespaces - Developer +redirect_from: + - /codespaces/developing-in-codespaces/using-github-codespaces-in-your-jetbrains-ide --- {% data reusables.codespaces.codespaces-jetbrains-beta-note %} diff --git a/content/codespaces/developing-in-codespaces/using-github-codespaces-with-github-cli.md b/content/codespaces/developing-in-a-codespace/using-github-codespaces-with-github-cli.md similarity index 99% rename from content/codespaces/developing-in-codespaces/using-github-codespaces-with-github-cli.md rename to content/codespaces/developing-in-a-codespace/using-github-codespaces-with-github-cli.md index 691f79d27a5f..f335a26d0028 100644 --- a/content/codespaces/developing-in-codespaces/using-github-codespaces-with-github-cli.md +++ b/content/codespaces/developing-in-a-codespace/using-github-codespaces-with-github-cli.md @@ -12,6 +12,7 @@ topics: - Developer redirect_from: - /codespaces/developing-in-codespaces/using-codespaces-with-github-cli + - /codespaces/developing-in-codespaces/using-github-codespaces-with-github-cli --- ## About {% data variables.product.prodname_cli %} diff --git a/content/codespaces/developing-in-codespaces/using-source-control-in-your-codespace.md b/content/codespaces/developing-in-a-codespace/using-source-control-in-your-codespace.md similarity index 98% rename from content/codespaces/developing-in-codespaces/using-source-control-in-your-codespace.md rename to content/codespaces/developing-in-a-codespace/using-source-control-in-your-codespace.md index fefb9efdf33a..c5ce09388dcf 100644 --- a/content/codespaces/developing-in-codespaces/using-source-control-in-your-codespace.md +++ b/content/codespaces/developing-in-a-codespace/using-source-control-in-your-codespace.md @@ -10,6 +10,8 @@ topics: - Fundamentals - Developer shortTitle: Source control +redirect_from: + - /codespaces/developing-in-codespaces/using-source-control-in-your-codespace --- {% jetbrains_beta %} diff --git a/content/codespaces/developing-in-codespaces/working-collaboratively-in-a-codespace.md b/content/codespaces/developing-in-a-codespace/working-collaboratively-in-a-codespace.md similarity index 97% rename from content/codespaces/developing-in-codespaces/working-collaboratively-in-a-codespace.md rename to content/codespaces/developing-in-a-codespace/working-collaboratively-in-a-codespace.md index 79ae4126f793..cf135a327c5e 100644 --- a/content/codespaces/developing-in-codespaces/working-collaboratively-in-a-codespace.md +++ b/content/codespaces/developing-in-a-codespace/working-collaboratively-in-a-codespace.md @@ -9,6 +9,8 @@ type: how_to topics: - Codespaces - Developer +redirect_from: + - /codespaces/developing-in-codespaces/working-collaboratively-in-a-codespace --- {% data variables.product.prodname_vs %} Live Share lets you collaboratively edit and debug with others in real time, within a codespace. You can securely share your current codespace, or access a codespace created by someone else. diff --git a/content/codespaces/guides.md b/content/codespaces/guides.md index 7a52960346b5..a9f5dc870872 100644 --- a/content/codespaces/guides.md +++ b/content/codespaces/guides.md @@ -23,19 +23,19 @@ includeGuides: - /codespaces/setting-up-your-project-for-codespaces/setting-up-your-repository/facilitating-quick-creation-and-resumption-of-codespaces - /codespaces/setting-up-your-project-for-codespaces/setting-up-your-repository/setting-up-a-template-repository-for-github-codespaces - /codespaces/customizing-your-codespace/personalizing-github-codespaces-for-your-account - - /codespaces/developing-in-codespaces/creating-a-codespace-for-a-repository - - /codespaces/developing-in-codespaces/creating-a-codespace-from-a-template - - /codespaces/developing-in-codespaces/developing-in-a-codespace - - /codespaces/developing-in-codespaces/deleting-a-codespace - - /codespaces/developing-in-codespaces/forwarding-ports-in-your-codespace - - /codespaces/developing-in-codespaces/opening-an-existing-codespace - - /codespaces/developing-in-codespaces/stopping-and-starting-a-codespace - - /codespaces/developing-in-codespaces/working-collaboratively-in-a-codespace - - /codespaces/developing-in-codespaces/using-github-codespaces-in-visual-studio-code - - /codespaces/developing-in-codespaces/using-github-codespaces-in-your-jetbrains-ide - - /codespaces/developing-in-codespaces/using-github-codespaces-with-github-cli - - /codespaces/developing-in-codespaces/using-source-control-in-your-codespace - - /codespaces/developing-in-codespaces/using-github-codespaces-for-pull-requests + - /codespaces/developing-in-a-codespace/creating-a-codespace-for-a-repository + - /codespaces/developing-in-a-codespace/creating-a-codespace-from-a-template + - /codespaces/developing-in-a-codespace/developing-in-a-codespace + - /codespaces/developing-in-a-codespace/deleting-a-codespace + - /codespaces/developing-in-a-codespace/forwarding-ports-in-your-codespace + - /codespaces/developing-in-a-codespace/opening-an-existing-codespace + - /codespaces/developing-in-a-codespace/stopping-and-starting-a-codespace + - /codespaces/developing-in-a-codespace/working-collaboratively-in-a-codespace + - /codespaces/developing-in-a-codespace/using-github-codespaces-in-visual-studio-code + - /codespaces/developing-in-a-codespace/using-github-codespaces-in-your-jetbrains-ide + - /codespaces/developing-in-a-codespace/using-github-codespaces-with-github-cli + - /codespaces/developing-in-a-codespace/using-source-control-in-your-codespace + - /codespaces/developing-in-a-codespace/using-github-codespaces-for-pull-requests - /codespaces/customizing-your-codespace/changing-the-machine-type-for-your-codespace - /codespaces/customizing-your-codespace/changing-the-machine-type-for-your-codespace - /codespaces/customizing-your-codespace/configuring-automatic-deletion-of-your-codespaces diff --git a/content/codespaces/index.md b/content/codespaces/index.md index 615155f8f37a..956b7e57302b 100644 --- a/content/codespaces/index.md +++ b/content/codespaces/index.md @@ -14,12 +14,12 @@ featuredLinks: - /billing/managing-billing-for-github-codespaces/about-billing-for-github-codespaces guideCards: - /codespaces/getting-started/deep-dive - - /codespaces/developing-in-codespaces/creating-a-codespace-for-a-repository - - /codespaces/developing-in-codespaces/creating-a-codespace-from-a-template - - /codespaces/developing-in-codespaces/opening-an-existing-codespace + - /codespaces/developing-in-a-codespace/creating-a-codespace-for-a-repository + - /codespaces/developing-in-a-codespace/creating-a-codespace-from-a-template + - /codespaces/developing-in-a-codespace/opening-an-existing-codespace - /codespaces/customizing-your-codespace/personalizing-github-codespaces-for-your-account - - /codespaces/developing-in-codespaces/using-github-codespaces-in-visual-studio-code - - /codespaces/developing-in-codespaces/using-github-codespaces-in-your-jetbrains-ide + - /codespaces/developing-in-a-codespace/using-github-codespaces-in-visual-studio-code + - /codespaces/developing-in-a-codespace/using-github-codespaces-in-your-jetbrains-ide popular: - /codespaces/setting-up-your-project-for-codespaces/adding-a-dev-container-configuration/setting-up-your-nodejs-project-for-codespaces - /codespaces/setting-up-your-project-for-codespaces/adding-a-dev-container-configuration/setting-up-your-python-project-for-codespaces @@ -44,7 +44,7 @@ versions: children: - /overview - /getting-started - - /developing-in-codespaces + - /developing-in-a-codespace - /customizing-your-codespace - /setting-up-your-project-for-codespaces - /prebuilding-your-codespaces diff --git a/content/github-cli/index.md b/content/github-cli/index.md index c158a78e428c..738ecaed832c 100644 --- a/content/github-cli/index.md +++ b/content/github-cli/index.md @@ -18,7 +18,7 @@ featuredLinks: - /github-cli/github-cli/creating-github-cli-extensions - /github-cli/github-cli/using-github-cli-extensions - /actions/using-workflows/using-github-cli-in-workflows - - /codespaces/developing-in-codespaces/using-github-codespaces-with-github-cli + - /codespaces/developing-in-a-codespace/using-github-codespaces-with-github-cli popular: - /pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request - /issues/tracking-your-work-with-issues/creating-an-issue @@ -34,3 +34,4 @@ changelog: layout: product-landing beta_product: false --- + diff --git a/content/rest/teams/external-groups.md b/content/rest/teams/external-groups.md index feeb50bde528..4bede7ad212b 100644 --- a/content/rest/teams/external-groups.md +++ b/content/rest/teams/external-groups.md @@ -12,6 +12,8 @@ autogenerated: rest ## About external groups +{% data reusables.scim.ghes-beta-note %} + To use these endpoints, the authenticated user must be a team maintainer or an owner of the organization associated with the team. {% ifversion ghec %} diff --git a/data/features/create-new-repos-with-query-params.yml b/data/features/create-new-repos-with-query-params.yml index 4e3c0366f40e..9c1faca6be01 100644 --- a/data/features/create-new-repos-with-query-params.yml +++ b/data/features/create-new-repos-with-query-params.yml @@ -2,3 +2,4 @@ versions: fpt: '*' ghec: '*' + ghes: '>= 3.11' diff --git a/data/features/dependabot-updates-failure-skip-schedule.yml b/data/features/dependabot-updates-failure-skip-schedule.yml index f7641276216a..0bc36da074a9 100644 --- a/data/features/dependabot-updates-failure-skip-schedule.yml +++ b/data/features/dependabot-updates-failure-skip-schedule.yml @@ -2,4 +2,4 @@ versions: fpt: '*' ghec: '*' - ghes: '>3.9' + ghes: '>= 3.11' diff --git a/data/features/dependency-graph-repository-view-update.yml b/data/features/dependency-graph-repository-view-update.yml index ca45844a7f35..af069791ac0f 100644 --- a/data/features/dependency-graph-repository-view-update.yml +++ b/data/features/dependency-graph-repository-view-update.yml @@ -3,4 +3,4 @@ versions: fpt: '*' ghec: '*' - ghes: '>3.9' + ghes: '>= 3.11' diff --git a/data/features/repository-activity-view.yml b/data/features/repository-activity-view.yml index 748e031107af..38dd0a9cdc2d 100644 --- a/data/features/repository-activity-view.yml +++ b/data/features/repository-activity-view.yml @@ -3,5 +3,5 @@ versions: fpt: '*' ghec: '*' - ghes: '> 3.9' + ghes: '>= 3.11' ghae: '> 3.9' diff --git a/data/features/secret-scanning-push-protection-private-internal.yml b/data/features/secret-scanning-push-protection-private-internal.yml index 88de9ae76c0a..9375bc9a8025 100644 --- a/data/features/secret-scanning-push-protection-private-internal.yml +++ b/data/features/secret-scanning-push-protection-private-internal.yml @@ -1,3 +1,3 @@ versions: - ghes: '>=3.10' + ghes: '>=3.11' ghec: '*' diff --git a/data/features/security-advisories-rest-api.yml b/data/features/security-advisories-rest-api.yml index 9a05e78760fa..e20792c6b347 100644 --- a/data/features/security-advisories-rest-api.yml +++ b/data/features/security-advisories-rest-api.yml @@ -3,3 +3,4 @@ versions: fpt: '*' ghec: '*' + ghes: '>= 3.11' diff --git a/data/reusables/enterprise-accounts/access-enterprise-ghes.md b/data/reusables/enterprise-accounts/access-enterprise-ghes.md new file mode 100644 index 000000000000..dc46f76497b5 --- /dev/null +++ b/data/reusables/enterprise-accounts/access-enterprise-ghes.md @@ -0,0 +1,3 @@ +1. In the top-right corner of {% data variables.product.prodname_ghe_server %}, click your profile photo, then click **Enterprise settings**. + + ![Screenshot of the drop-down menu that appears when you click the profile photo on GitHub Enterprise Server. The "Enterprise settings" option is highlighted in a dark orange outline.](/assets/images/enterprise/settings/enterprise-settings.png) diff --git a/data/reusables/enterprise-accounts/access-enterprise.md b/data/reusables/enterprise-accounts/access-enterprise.md index 5e445fa9835e..4e00ef33fae2 100644 --- a/data/reusables/enterprise-accounts/access-enterprise.md +++ b/data/reusables/enterprise-accounts/access-enterprise.md @@ -4,7 +4,5 @@ 1. In the list of enterprises, click the enterprise you want to view. {%- elsif ghes or ghae %} -1. In the top-right corner of {% data variables.product.product_name %}, click your profile photo, then click **Enterprise settings**. - - ![Screenshot of the drop-down menu that appears when you click the profile photo on GitHub Enterprise Server. The "Enterprise settings" option is highlighted in a dark orange outline.](/assets/images/enterprise/settings/enterprise-settings.png) +{% data reusables.enterprise-accounts.access-enterprise-ghes %} {%- endif %}