Merge branch 'main' into security-manager-legacy-fix
This commit is contained in:
@@ -1 +1 @@
|
||||
Environments are used to describe a general deployment target like `production`, `staging`, or `development`. When a {% data variables.product.prodname_actions %} workflow deploys to an environment, the environment is displayed on the main page of the repository. You can use environments to require approval for a job to proceed, restrict which branches can trigger a workflow, or limit access to secrets. For more information about creating environments, see "[Using environments for deployment](/actions/deployment/using-environments-for-deployment)."
|
||||
Environments are used to describe a general deployment target like `production`, `staging`, or `development`. When a {% data variables.product.prodname_actions %} workflow deploys to an environment, the environment is displayed on the main page of the repository. You can use environments to require approval for a job to proceed, restrict which branches can trigger a workflow, or limit access to secrets. For more information about creating environments, see "[Using environments for deployment](/actions/deployment/using-environments-for-deployment)."
|
||||
|
||||
@@ -1,16 +1,13 @@
|
||||
|
||||
| Action | Description
|
||||
|------------------|-------------------
|
||||
| `remove_self_hosted_runner` | Triggered when a self-hosted runner is removed.
|
||||
| `register_self_hosted_runner` | Triggered when a new self-hosted runner is registered. For more information, see "[Adding self-hosted runners](/actions/hosting-your-own-runners/adding-self-hosted-runners)."
|
||||
| `runner_group_created` | Triggered when a self-hosted runner group is created. For more information, see "[About self-hosted runner groups](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#about-self-hosted-runner-groups).
|
||||
| `runner_group_removed` | Triggered when a self-hosted runner group is removed. For more information, see "[Removing a self-hosted runner group](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#removing-a-self-hosted-runner-group)."{% ifversion ghes = 2.22 %}
|
||||
| `runner_group_renamed` | Triggered when the self-hosted runner group is renamed.
|
||||
| `runner_group_visiblity_updated` | Triggered when the visibility settings of the self-hosted runner group are changed.{% endif %}
|
||||
| `runner_group_removed` | Triggered when a self-hosted runner group is removed. For more information, see "[Removing a self-hosted runner group](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#removing-a-self-hosted-runner-group)."
|
||||
| `runner_group_runner_removed` | Triggered when the REST API is used to remove a self-hosted runner from a group.
|
||||
| `runner_group_runners_added` | Triggered when a self-hosted runner is added to a group. For more information, see "[Moving a self-hosted runner to a group](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#moving-a-self-hosted-runner-to-a-group)."
|
||||
| `runner_group_runners_updated` | Triggered when a runner group's list of members is updated. For more information, see "[Set self-hosted runners in a group for an organization](/rest/reference/actions#set-self-hosted-runners-in-a-group-for-an-organization)."{% ifversion fpt or ghes > 2.22 or ghae or ghec %}
|
||||
| `runner_group_updated` | Triggered when the configuration of a self-hosted runner group is changed. For more information, see "[Changing the access policy of a self-hosted runner group](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#changing-the-access-policy-of-a-self-hosted-runner-group)."{% endif %}
|
||||
| `runner_group_runners_updated` | Triggered when a runner group's list of members is updated. For more information, see "[Set self-hosted runners in a group for an organization](/rest/reference/actions#set-self-hosted-runners-in-a-group-for-an-organization)."
|
||||
| `runner_group_updated` | Triggered when the configuration of a self-hosted runner group is changed. For more information, see "[Changing the access policy of a self-hosted runner group](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#changing-the-access-policy-of-a-self-hosted-runner-group)."
|
||||
| `self_hosted_runner_updated` | Triggered when the runner application is updated. Can be viewed using the REST API and the UI; not visible in the JSON/CSV export. For more information, see "[About self-hosted runners](/actions/hosting-your-own-runners/about-self-hosted-runners#about-self-hosted-runners)."{% ifversion fpt or ghec %}
|
||||
| `self_hosted_runner_online` | Triggered when the runner application is started. Can only be viewed using the REST API; not visible in the UI or JSON/CSV export. For more information, see "[Checking the status of a self-hosted runner](/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners#checking-the-status-of-a-self-hosted-runner)."
|
||||
| `self_hosted_runner_offline` | Triggered when the runner application is stopped. Can only be viewed using the REST API; not visible in the UI or JSON/CSV export. For more information, see "[Checking the status of a self-hosted runner](/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners#checking-the-status-of-a-self-hosted-runner)."{% endif %}
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
{% data variables.product.product_name %} offers CD workflow templates for several popular services, such as Azure Web App. To learn how to get started using a workflow template, see "[Using workflow templates](/actions/learn-github-actions/using-workflow-templates)" or [browse the full list of deployment workflow templates](https://github.com/actions/starter-workflows/tree/main/deployments). You can also check out our more detailed guides for specific deployment workflows, such as "[Deploying to Azure App Service](/actions/deployment/deploying-to-azure-app-service)."
|
||||
|
||||
Many service providers also offer actions on {% data variables.product.prodname_marketplace %} for deploying to their service. For the full list, see [{% data variables.product.prodname_marketplace %}](https://github.com/marketplace?category=deployment&type=actions).
|
||||
Many service providers also offer actions on {% data variables.product.prodname_marketplace %} for deploying to their service. For the full list, see [{% data variables.product.prodname_marketplace %}](https://github.com/marketplace?category=deployment&type=actions).
|
||||
|
||||
@@ -1 +1 @@
|
||||
If you configured a deployment environment, change the value of `environment` to be the name of your environment. If you did not configure an environment{% ifversion fpt or ghec %} or if your workflow is in a private repository and you do not use {% data variables.product.prodname_ghe_cloud %}{% endif %}, delete the `environment` key.
|
||||
If you configured a deployment environment, change the value of `environment` to be the name of your environment. If you did not configure an environment{% ifversion fpt or ghec %} or if your workflow is in a private repository and you do not use {% data variables.product.prodname_ghe_cloud %}{% endif %}, delete the `environment` key.
|
||||
|
||||
@@ -1,12 +1 @@
|
||||
{% ifversion ghes = 2.22 %}
|
||||
{% note %}
|
||||
|
||||
**Note:** {% data variables.product.prodname_actions %} was available for {% data variables.product.prodname_ghe_server %} 2.22 as a limited beta. The beta has ended. {% data variables.product.prodname_actions %} is now generally available in {% data variables.product.prodname_ghe_server %} 3.0 or later. For more information, see the [{% data variables.product.prodname_ghe_server %} 3.0 release notes](/enterprise-server@3.0/admin/release-notes).
|
||||
|
||||
<br/>
|
||||
|
||||
- For more information about upgrading to {% data variables.product.prodname_ghe_server %} 3.0 or later, see "[Upgrading {% data variables.product.prodname_ghe_server %}](/admin/enterprise-management/upgrading-github-enterprise-server)."
|
||||
- For more information about configuring {% data variables.product.prodname_actions %} after you upgrade, see the [documentation for {% data variables.product.prodname_ghe_server %} 3.0](/enterprise-server@3.0/admin/github-actions/getting-started-with-github-actions-for-github-enterprise-server).
|
||||
|
||||
{% endnote %}
|
||||
{% endif %}
|
||||
<!-- 2BB13A4A-041C-4064-9A7A-B482C5BC964F -->
|
||||
|
||||
@@ -1 +1 @@
|
||||
When a workflow job that references an environment runs, it creates a deployment object with the `environment` property set to the name of your environment. As the workflow progresses, it also creates deployment status objects with the `environment` property set to the name of your environment, the `environment_url` property set to the URL for environment (if specified in the workflow), and the `state` property set to the status of the job.
|
||||
When a workflow job that references an environment runs, it creates a deployment object with the `environment` property set to the name of your environment. As the workflow progresses, it also creates deployment status objects with the `environment` property set to the name of your environment, the `environment_url` property set to the URL for environment (if specified in the workflow), and the `state` property set to the status of the job.
|
||||
|
||||
@@ -42,4 +42,4 @@ jobs:
|
||||
# ...deployment-specific steps
|
||||
```
|
||||
|
||||

|
||||

|
||||
|
||||
@@ -1 +1 @@
|
||||
If {% data variables.product.prodname_actions %} is enabled for your enterprise, only HTTP proxies are supported. SOCK5 and HTTPS proxies and Polipo are not supported.
|
||||
If {% data variables.product.prodname_actions %} is enabled for your enterprise, only HTTP proxies are supported. SOCK5 and HTTPS proxies and Polipo are not supported.
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
{% ifversion fpt or ghes > 3.3 or ghae-issue-4757 or ghec %}
|
||||
All actions and workflows called within a run have write access to that run's artifacts.
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
@@ -2,4 +2,4 @@
|
||||
## Reusing workflows
|
||||
|
||||
You can call one workflow from within another workflow. This allows you to reuse workflows, avoiding duplication and making your workflows easier to maintain. For more information, see "[Reusing workflows](/actions/learn-github-actions/reusing-workflows)."
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
@@ -4,4 +4,4 @@ jobs:
|
||||
uses: octo-org/this-repo/.github/workflows/workflow-1.yml@172239021f7ba04fe7327647b213799853a9eb89
|
||||
call-workflow-2:
|
||||
uses: octo-org/another-repo/.github/workflows/workflow-2.yml@v1
|
||||
```
|
||||
```
|
||||
|
||||
@@ -1 +1 @@
|
||||
Workflow templates allow everyone in your organization who has permission to create workflows to do so more quickly and easily. When you create a new workflow, you can choose a template and some or all of the work of writing the workflow will be done for you. You can use workflow templates as a starting place to build your custom workflow or use them as-is. This not only saves time, it promotes consistency and best practice across your organization.
|
||||
Workflow templates allow everyone in your organization who has permission to create workflows to do so more quickly and easily. When you create a new workflow, you can choose a template and some or all of the work of writing the workflow will be done for you. You can use workflow templates as a starting place to build your custom workflow or use them as-is. This not only saves time, it promotes consistency and best practice across your organization.
|
||||
|
||||
@@ -6,4 +6,4 @@ To help prevent this, workflows on pull requests to public repositories from som
|
||||
|
||||
**Note:** Workflows triggered by `pull_request_target` events are run in the context of the base branch. Since the base branch is considered trusted, workflows triggered by these events will always run, regardless of approval settings.
|
||||
|
||||
{% endnote %}
|
||||
{% endnote %}
|
||||
|
||||
@@ -1,2 +1 @@
|
||||
{% data variables.product.prodname_GH_advanced_security %} helps developers improve and maintain the security and quality of code.{% ifversion fpt or ghes > 2.22 or ghae or ghec %} For more information, see "[About {% data variables.product.prodname_GH_advanced_security %}](/github/getting-started-with-github/about-github-advanced-security)."
|
||||
{% endif %}
|
||||
{% data variables.product.prodname_GH_advanced_security %} helps developers improve and maintain the security and quality of code. For more information, see "[About {% data variables.product.prodname_GH_advanced_security %}](/github/getting-started-with-github/about-github-advanced-security)."
|
||||
|
||||
@@ -1,3 +1 @@
|
||||
{% ifversion fpt or ghes > 2.22 or ghae or ghec %}
|
||||
For more information, see "[About {% data variables.product.prodname_GH_advanced_security %}](/github/getting-started-with-github/about-github-advanced-security)."
|
||||
{% endif %}
|
||||
|
||||
@@ -1 +1 @@
|
||||
For more information, see "[Enforcing policies for {% data variables.product.prodname_advanced_security %} in your enterprise]({% ifversion fpt %}/enterprise-cloud@latest{% endif %}/admin/policies/enforcing-policies-for-advanced-security-in-your-enterprise)."
|
||||
For more information, see "[Enforcing policies for {% data variables.product.prodname_advanced_security %} in your enterprise]({% ifversion fpt %}/enterprise-cloud@latest{% endif %}/admin/policies/enforcing-policies-for-advanced-security-in-your-enterprise)."
|
||||
|
||||
@@ -1 +1 @@
|
||||
1. Under "{% data variables.product.prodname_secret_scanning_caps %}", under "Custom patterns", click {% ifversion fpt or ghes > 3.2 or ghae-next or ghec %}**New pattern**{% elsif ghes = 3.2 %}**New custom pattern**{% endif %}.
|
||||
1. Under "{% data variables.product.prodname_secret_scanning_caps %}", under "Custom patterns", click {% ifversion fpt or ghes > 3.2 or ghae-next or ghec %}**New pattern**{% elsif ghes = 3.2 %}**New custom pattern**{% endif %}.
|
||||
|
||||
@@ -1 +1 @@
|
||||
There is a limit of ten tokens that are issued per user/application/scope combination. If an application creates more than 10 tokens for the same user and the same scopes, the oldest tokens with the same user/application/scope combination will be revoked.
|
||||
There is a limit of ten tokens that are issued per user/application/scope combination. If an application creates more than 10 tokens for the same user and the same scopes, the oldest tokens with the same user/application/scope combination will be revoked.
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
Email notifications are sent to account owners and billing managers when spending reaches 50%, 75%, and 90% of your account's included usage and when spending reaches 50%, 75%, and 90% of your account's spending limit.
|
||||
|
||||
You can disable these notifications anytime by navigating to the bottom of the **Spending Limit** page.
|
||||
You can disable these notifications anytime by navigating to the bottom of the **Spending Limit** page.
|
||||
|
||||
@@ -1 +1 @@
|
||||
{% data variables.product.prodname_cli %} extensions are custom {% data variables.product.prodname_cli %} commands that anyone can create and use.
|
||||
{% data variables.product.prodname_cli %} extensions are custom {% data variables.product.prodname_cli %} commands that anyone can create and use.
|
||||
|
||||
@@ -1 +1 @@
|
||||
{% data variables.product.prodname_cli %} is a command-line tool that brings pull requests, issues, {% data variables.product.prodname_actions %}, and other {% data variables.product.product_name %} features to your terminal, so you can do all your work in one place.
|
||||
{% data variables.product.prodname_cli %} is a command-line tool that brings pull requests, issues, {% data variables.product.prodname_actions %}, and other {% data variables.product.product_name %} features to your terminal, so you can do all your work in one place.
|
||||
|
||||
@@ -2,4 +2,4 @@
|
||||
|
||||
To learn more about {% data variables.product.prodname_cli %}, see "[About {% data variables.product.prodname_cli %}](/github-cli/github-cli/about-github-cli)."
|
||||
|
||||
{% endnote %}
|
||||
{% endnote %}
|
||||
|
||||
@@ -1,12 +1,4 @@
|
||||
{% ifversion ghes = 2.22 %}
|
||||
|
||||
{% note %}
|
||||
|
||||
**Note:** {% data variables.product.prodname_code_scanning_capc %} is in beta in {% data variables.product.prodname_ghe_server %} 2.22. For the generally available release of code scanning, upgrade to the latest release of {% data variables.product.prodname_ghe_server %}.
|
||||
|
||||
{% endnote %}
|
||||
|
||||
{% elsif ghae %}
|
||||
{% ifversion ghae %}
|
||||
|
||||
{% note %}
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
You add the {% data variables.product.prodname_codeql_cli %} to your third-party system, then call the tool to analyze code and upload the SARIF results to {% data variables.product.product_name %}. The resulting {% data variables.product.prodname_code_scanning %} alerts are shown alongside any alerts generated within {% data variables.product.product_name %}. For more information, see "[About CodeQL code scanning in your CI system](/code-security/code-scanning/using-codeql-code-scanning-with-your-existing-ci-system/about-codeql-code-scanning-in-your-ci-system)."
|
||||
You add the {% data variables.product.prodname_codeql_cli %} to your third-party system, then call the tool to analyze code and upload the SARIF results to {% data variables.product.product_name %}. The resulting {% data variables.product.prodname_code_scanning %} alerts are shown alongside any alerts generated within {% data variables.product.product_name %}. For more information, see "[About CodeQL code scanning in your CI system](/code-security/code-scanning/using-codeql-code-scanning-with-your-existing-ci-system/about-codeql-code-scanning-in-your-ci-system)."
|
||||
|
||||
@@ -1 +1 @@
|
||||
You can run {% data variables.product.prodname_codeql %} {% data variables.product.prodname_code_scanning %} within {% data variables.product.product_name %} using {% data variables.product.prodname_actions %}. Alternatively, if you use a third-party continuous integration or continuous delivery/deployment (CI/CD) system, you can run {% data variables.product.prodname_codeql %} analysis in your existing system and upload the results to {% data variables.product.product_location %}.
|
||||
You can run {% data variables.product.prodname_codeql %} {% data variables.product.prodname_code_scanning %} within {% data variables.product.product_name %} using {% data variables.product.prodname_actions %}. Alternatively, if you use a third-party continuous integration or continuous delivery/deployment (CI/CD) system, you can run {% data variables.product.prodname_codeql %} analysis in your existing system and upload the results to {% data variables.product.product_location %}.
|
||||
|
||||
@@ -1 +1 @@
|
||||
If you {% ifversion ghes = 2.22 %}close{% else %}dismiss{% endif %} a {% data variables.product.prodname_codeql %} alert as a false positive result, for example because the code uses a sanitization library that isn't supported, consider contributing to the {% data variables.product.prodname_codeql %} repository and improving the analysis. For more information about {% data variables.product.prodname_codeql %}, see "[Contributing to {% data variables.product.prodname_codeql %}](https://github.com/github/codeql/blob/main/CONTRIBUTING.md)."
|
||||
If you dismiss a {% data variables.product.prodname_codeql %} alert as a false positive result, for example because the code uses a sanitization library that isn't supported, consider contributing to the {% data variables.product.prodname_codeql %} repository and improving the analysis. For more information about {% data variables.product.prodname_codeql %}, see "[Contributing to {% data variables.product.prodname_codeql %}](https://github.com/github/codeql/blob/main/CONTRIBUTING.md)."
|
||||
|
||||
@@ -10,7 +10,7 @@ The options available to specify the additional queries you want to run are:
|
||||
|
||||
You can use both `packs` and `queries` in the same workflow.
|
||||
{% else %}
|
||||
Any additional queries you want to run must belong to a {% data variables.product.prodname_ql %} pack in a repository. For more information, see {% ifversion ghes < 3.0 %}"[About {% data variables.product.prodname_code_scanning %}](/github/finding-security-vulnerabilities-and-errors-in-your-code/automatically-scanning-your-code-for-vulnerabilities-and-errors/about-code-scanning#about-codeql)."{% else %}"[About {% data variables.product.prodname_code_scanning %} with {% data variables.product.prodname_codeql %}](/code-security/secure-coding/automatically-scanning-your-code-for-vulnerabilities-and-errors/about-code-scanning-with-codeql#about-codeql-queries)."{% endif %}
|
||||
Any additional queries you want to run must belong to a {% data variables.product.prodname_ql %} pack in a repository. For more information, see "[About {% data variables.product.prodname_code_scanning %} with {% data variables.product.prodname_codeql %}](/code-security/secure-coding/automatically-scanning-your-code-for-vulnerabilities-and-errors/about-code-scanning-with-codeql#about-codeql-queries)."
|
||||
|
||||
You can specify a single _.ql_ file, a directory containing multiple _.ql_ files, a _.qls_ query suite definition file, or any combination. For more information about query suite definitions, see "[Creating {% data variables.product.prodname_codeql %} query suites](https://codeql.github.com/docs/codeql-cli/creating-codeql-query-suites/)."
|
||||
{% endif %}
|
||||
|
||||
@@ -1,9 +1,5 @@
|
||||
{% ifversion fpt or ghes > 2.22 or ghae or ghec %}
|
||||
|
||||
{% note %}
|
||||
|
||||
**Note:** Uploading SARIF data to display as {% data variables.product.prodname_code_scanning %} results in {% data variables.product.product_name %} is supported for organization-owned repositories with {% data variables.product.prodname_GH_advanced_security %} enabled{% ifversion fpt or ghec %}, and public repositories on {% data variables.product.prodname_dotcom_the_website %}{% endif %}. For more information, see "[Managing security and analysis settings for your repository](/github/administering-a-repository/managing-security-and-analysis-settings-for-your-repository)."
|
||||
|
||||
{% endnote %}
|
||||
|
||||
{% endif %}
|
||||
|
||||
@@ -2,4 +2,4 @@
|
||||
1. Click the branch name in the status bar.
|
||||

|
||||
1. In the drop-down, either click the branch you want to switch to, or enter the name for a new branch and click **Create new branch**.
|
||||

|
||||

|
||||
|
||||
@@ -1 +1 @@
|
||||
If you hit a spending limit, you will no longer be able to create or resume your codespaces. You can still [export any work in progress changes to a new branch](/codespaces/troubleshooting/exporting-changes-to-a-branch).
|
||||
If you hit a spending limit, you will no longer be able to create or resume your codespaces. You can still [export any work in progress changes to a new branch](/codespaces/troubleshooting/exporting-changes-to-a-branch).
|
||||
|
||||
@@ -4,4 +4,4 @@
|
||||
1. Type a commit message describing the change you've made.
|
||||

|
||||
1. To commit your staged changes, click the check mark at the top the source control side bar.
|
||||

|
||||

|
||||
|
||||
@@ -2,4 +2,4 @@
|
||||

|
||||
1. Check that the local branch and repository you're merging from, and the remote branch and repository you're merging into, are correct. Then give the pull request a title and a description.
|
||||

|
||||
1. Click **Create**.
|
||||
1. Click **Create**.
|
||||
|
||||
@@ -4,4 +4,4 @@
|
||||
**Note:** {% data variables.product.prodname_dependabot_alerts %} is currently in beta and is subject to change.
|
||||
|
||||
{% endnote %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
{% ifversion ghes or ghae-issue-4864 %}
|
||||
The dependency graph and {% data variables.product.prodname_dependabot_alerts %} are configured at an enterprise level by the enterprise owner. For more information, see "[Enabling the dependency graph and {% data variables.product.prodname_dependabot_alerts %} on your enterprise account](/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account)."
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
@@ -5,4 +5,4 @@
|
||||
|
||||
{% endnote %}
|
||||
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
@@ -1 +1 @@
|
||||
1. Click the **Runner groups** tab.
|
||||
1. Click the **Runner groups** tab.
|
||||
|
||||
@@ -1 +1 @@
|
||||
{% data variables.product.prodname_managed_users_caps %} cannot fork repositories from outside of the enterprise or fork internal repositories. {% data variables.product.prodname_managed_users_caps %} can fork private repositories owned by organizations in the enterprise into other organizations owned by the enterprise, or as a fork owned by the {% data variables.product.prodname_managed_user %}.
|
||||
{% data variables.product.prodname_managed_users_caps %} cannot fork repositories from outside of the enterprise or fork internal repositories. {% data variables.product.prodname_managed_users_caps %} can fork private repositories owned by organizations in the enterprise into other organizations owned by the enterprise, or as a fork owned by the {% data variables.product.prodname_managed_user %}.
|
||||
|
||||
@@ -1 +1 @@
|
||||
For more information, see "[Types of GitHub accounts](/get-started/learning-about-github/types-of-github-accounts#enterprise-managed-users)."
|
||||
For more information, see "[Types of GitHub accounts](/get-started/learning-about-github/types-of-github-accounts#enterprise-managed-users)."
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
If you need to reset the password for your setup user, use an incognito or private browsing window to request a new password. When the email arrives with the link to reset your password, copy the link into your browser. For more information on resetting your password, see "[Requesting a new password
|
||||
](/github/authenticating-to-github/keeping-your-account-and-data-secure/updating-your-github-access-credentials#requesting-a-new-password)."
|
||||
](/github/authenticating-to-github/keeping-your-account-and-data-secure/updating-your-github-access-credentials#requesting-a-new-password)."
|
||||
|
||||
@@ -1 +1 @@
|
||||
{% ifversion ghec %} Members of an {% data variables.product.prodname_emu_enterprise %} can only follow other members of their enterprise. {% endif %}
|
||||
{% ifversion ghec %} Members of an {% data variables.product.prodname_emu_enterprise %} can only follow other members of their enterprise. {% endif %}
|
||||
|
||||
@@ -1 +1 @@
|
||||
{% ifversion ghec %}Members of an {% data variables.product.prodname_emu_enterprise %} cannot fork repositories from outside of the enterprise or fork internal repositories.{% endif %}
|
||||
{% ifversion ghec %}Members of an {% data variables.product.prodname_emu_enterprise %} cannot fork repositories from outside of the enterprise or fork internal repositories.{% endif %}
|
||||
|
||||
@@ -1 +1 @@
|
||||
{% ifversion ghec %}Members of an {% data variables.product.prodname_emu_enterprise %} cannot create gists and have read-only access to gists.{% endif %}
|
||||
{% ifversion ghec %}Members of an {% data variables.product.prodname_emu_enterprise %} cannot create gists and have read-only access to gists.{% endif %}
|
||||
|
||||
@@ -1 +1 @@
|
||||
{% ifversion ghec %} Members of an {% data variables.product.prodname_emu_enterprise %} can only interact with repositories within their enterprise. {% endif %}
|
||||
{% ifversion ghec %} Members of an {% data variables.product.prodname_emu_enterprise %} can only interact with repositories within their enterprise. {% endif %}
|
||||
|
||||
@@ -4,4 +4,4 @@
|
||||
**Note**: If your enterprise uses {% data variables.product.prodname_emus %}, you must follow a different process to configure SAML single sign-on. For more information, see "[Configuring SAML single sign-on for Enterprise Managed Users](/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/configuring-saml-single-sign-on-for-enterprise-managed-users)."
|
||||
|
||||
{% endnote %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
@@ -4,4 +4,4 @@
|
||||
**Note**: If your enterprise uses {% data variables.product.prodname_emus %}, you cannot use team synchronization and must instead configure SCIM to manage membership with your identity provider. For more information, see "[Configuring SCIM provisioning for Enterprise Managed Users](/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/configuring-scim-provisioning-for-enterprise-managed-users)."
|
||||
|
||||
{% endnote %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
@@ -1 +1 @@
|
||||
{% data variables.product.prodname_emus %} is a feature of {% data variables.product.prodname_ghe_cloud %} that provides even greater control over enterprise members and resources. With {% data variables.product.prodname_emus %}, all members are provisioned and managed through your identity provider (IdP) instead of users creating their own accounts on {% data variables.product.product_name %}. Team membership can be managed using groups on your IdP. {% data variables.product.prodname_managed_users_caps %} are restricted to their enterprise and are unable to push code, collaborate, or interact with users, repositories, and organizations outside of their enterprise. For more information, see "[About {% data variables.product.prodname_emus %}](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users){% ifversion not ghec %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %}
|
||||
{% data variables.product.prodname_emus %} is a feature of {% data variables.product.prodname_ghe_cloud %} that provides even greater control over enterprise members and resources. With {% data variables.product.prodname_emus %}, all members are provisioned and managed through your identity provider (IdP) instead of users creating their own accounts on {% data variables.product.product_name %}. Team membership can be managed using groups on your IdP. {% data variables.product.prodname_managed_users_caps %} are restricted to their enterprise and are unable to push code, collaborate, or interact with users, repositories, and organizations outside of their enterprise. For more information, see "[About {% data variables.product.prodname_emus %}](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users){% ifversion not ghec %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %}
|
||||
|
||||
@@ -1 +1 @@
|
||||
The short code must be unique to your enterprise, a three-to-eight character alphanumeric string, and contain no special characters.
|
||||
The short code must be unique to your enterprise, a three-to-eight character alphanumeric string, and contain no special characters.
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
* Azure Active Directory (Azure AD)
|
||||
* Okta
|
||||
* Okta
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
1. Under your business account's name, click {% octicon "key" aria-label="The key icon" %} **Identity provider**.
|
||||

|
||||

|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
{% ifversion ghec %}
|
||||
If your organization is owned by an enterprise account, enabling team synchronization or SCIM provisioning for the enterprise account will override your organization-level team synchronization settings. For more information, see "[Managing team synchronization for organizations in your enterprise account](/admin/authentication/managing-identity-and-access-for-your-enterprise/managing-team-synchronization-for-organizations-in-your-enterprise)" and "[Configuring SCIM provisioning for Enterprise Managed Users](/github/setting-up-and-managing-your-enterprise/managing-your-enterprise-users-with-your-identity-provider/configuring-scim-provisioning-for-enterprise-managed-users)."
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
- [Minimum requirements](#minimum-requirements){% ifversion ghes = 2.22 %}
|
||||
- [Beta features in {% data variables.product.prodname_ghe_server %} 2.22](#beta-features-in-github-enterprise-server-222){% endif %}
|
||||
- [Minimum requirements](#minimum-requirements)
|
||||
- [Storage](#storage)
|
||||
- [CPU and memory](#cpu-and-memory)
|
||||
|
||||
@@ -17,7 +16,7 @@ Your instance requires a persistent data disk separate from the root disk. For m
|
||||
|
||||
{% ifversion ghes %}
|
||||
|
||||
To configure{% ifversion ghes = 2.22 %} the beta of{% endif %} {% data variables.product.prodname_actions %}, you must provide external blob storage. For more information, see "[Getting started with {% data variables.product.prodname_actions %} for {% data variables.product.prodname_ghe_server %}](/admin/github-actions/getting-started-with-github-actions-for-github-enterprise-server##external-storage-requirements)."
|
||||
To configure {% data variables.product.prodname_actions %}, you must provide external blob storage. For more information, see "[Getting started with {% data variables.product.prodname_actions %} for {% data variables.product.prodname_ghe_server %}](/admin/github-actions/getting-started-with-github-actions-for-github-enterprise-server##external-storage-requirements)."
|
||||
|
||||
{% endif %}
|
||||
|
||||
@@ -29,7 +28,7 @@ The CPU and memory resources that {% data variables.product.prodname_ghe_server
|
||||
|
||||
{% ifversion ghes %}
|
||||
|
||||
If you {% ifversion ghes = 2.22 %}enabled the beta of{% else %}plan to enable{% endif %} {% data variables.product.prodname_actions %} for the users of your {% data variables.product.prodname_ghe_server %} instance, you may need to provision additional CPU and memory resources for your instance. For more information, see "[Getting started with {% data variables.product.prodname_actions %} for {% data variables.product.prodname_ghe_server %}](/admin/github-actions/getting-started-with-github-actions-for-github-enterprise-server#review-hardware-considerations)."
|
||||
If you plan to enable {% data variables.product.prodname_actions %} for the users of your {% data variables.product.prodname_ghe_server %} instance, you may need to provision additional CPU and memory resources for your instance. For more information, see "[Getting started with {% data variables.product.prodname_actions %} for {% data variables.product.prodname_ghe_server %}](/admin/github-actions/getting-started-with-github-actions-for-github-enterprise-server#review-hardware-considerations)."
|
||||
|
||||
{% endif %}
|
||||
|
||||
|
||||
@@ -1,14 +1,4 @@
|
||||
{% ifversion ghes = 2.22 %}
|
||||
|
||||
{% note %}
|
||||
|
||||
**Note**: If you joined the beta for {% data variables.product.prodname_actions %} or {% data variables.product.prodname_registry %} and enabled the features, your instance requires additional hardware resources. Minimum requirements for an instance with beta features enabled are **bold** in the following table. For more information, see "[Beta features in {% data variables.product.prodname_ghe_server %} 2.22](#beta-features-in-github-enterprise-server-222)."
|
||||
|
||||
{% endnote %}
|
||||
|
||||
{% endif %}
|
||||
|
||||
{% ifversion ghes > 2.22 %}
|
||||
{% ifversion ghes %}
|
||||
|
||||
| User licenses | vCPUs | Memory | Attached storage | Root storage |
|
||||
| :- | -: | -: | -: | -: |
|
||||
@@ -22,30 +12,18 @@
|
||||
|
||||
| User licenses | vCPUs | Memory | Attached storage | Root storage |
|
||||
| :- | -: | -: | -: | -: |
|
||||
| Trial, demo, or 10 light users | 2{% ifversion ghes = 2.22 %}<br/>or [**4**](#beta-features-in-github-enterprise-server-222){% endif %} | 16 GB{% ifversion ghes = 2.22 %}<br/>or [**32 GB**](#beta-features-in-github-enterprise-server-222){% endif %} | 100 GB{% ifversion ghes = 2.22 %}<br/>or [**150 GB**](#beta-features-in-github-enterprise-server-222){% endif %} | 200 GB |
|
||||
| 10 to 3,000 | 4{% ifversion ghes = 2.22 %}<br/>or [**8**](#beta-features-in-github-enterprise-server-222){% endif %} | 32 GB{% ifversion ghes = 2.22 %}<br/>or [**48 GB**](#beta-features-in-github-enterprise-server-222){% endif %} | 250 GB{% ifversion ghes = 2.22 %}<br/>or [**300 GB**](#beta-features-in-github-enterprise-server-222){% endif %} | 200 GB |
|
||||
| 3,000 to 5000 | 8{% ifversion ghes = 2.22 %}<br/>or [**12**](#beta-features-in-github-enterprise-server-222){% endif %} | 64 GB | 500 GB | 200 GB |
|
||||
| 5,000 to 8000 | 12{% ifversion ghes = 2.22 %}<br/>or [**16**](#beta-features-in-github-enterprise-server-222){% endif %} | 96 GB | 750 GB | 200 GB |
|
||||
| 8,000 to 10,000+ | 16{% ifversion ghes = 2.22 %}<br/>or [**20**](#beta-features-in-github-enterprise-server-222){% endif %} | 128 GB{% ifversion ghes = 2.22 %}<br/>or [**160 GB**](#beta-features-in-github-enterprise-server-222){% endif %} | 1000 GB | 200 GB |
|
||||
| Trial, demo, or 10 light users | 2 | 16 GB | 100 GB | 200 GB |
|
||||
| 10 to 3,000 | 4 | 32 GB | 250 GB | 200 GB |
|
||||
| 3,000 to 5000 | 8 | 64 GB | 500 GB | 200 GB |
|
||||
| 5,000 to 8000 | 12 | 96 GB | 750 GB | 200 GB |
|
||||
| 8,000 to 10,000+ | 16 | 128 GB | 1000 GB | 200 GB |
|
||||
|
||||
{% endif %}
|
||||
|
||||
{% ifversion ghes > 2.22 %}
|
||||
{% ifversion ghes %}
|
||||
|
||||
If you plan to enable {% data variables.product.prodname_actions %} for the users of your instance, review the requirements for hardware, external storage, and runners in "[Getting started with {% data variables.product.prodname_actions %} for {% data variables.product.prodname_ghe_server %}](/admin/github-actions/getting-started-with-github-actions-for-github-enterprise-server)."
|
||||
|
||||
{% endif %}
|
||||
|
||||
{% data reusables.enterprise_installation.about-adjusting-resources %}
|
||||
|
||||
{% ifversion ghes = 2.22 %}
|
||||
|
||||
### Beta features in {% data variables.product.prodname_ghe_server %} 2.22
|
||||
|
||||
{% data variables.product.prodname_ghe_server %} 2.22 offered features in beta, such as {% data variables.product.prodname_actions %}, {% data variables.product.prodname_registry %}, and {% data variables.product.prodname_code_scanning %}. For more information, see the [{% data variables.product.prodname_ghe_server %} 2.22 release notes](/enterprise-server@2.22/admin/release-notes#2.22.0).
|
||||
|
||||
If you enabled beta features for {% data variables.product.prodname_ghe_server %} 2.22, your instance requires additional hardware resources. For more information about minimum requirements, see "[Minimum requirements](#minimum-requirements)."
|
||||
|
||||
For more information about the hardware requirements for {% data variables.product.prodname_actions %}, see "[Getting started with {% data variables.product.prodname_actions %} for {% data variables.product.prodname_ghe_server %}](/admin/github-actions/getting-started-with-github-actions-for-github-enterprise-server#review-hardware-considerations)."
|
||||
|
||||
{% endif %}
|
||||
|
||||
@@ -1 +1 @@
|
||||
If you can't see {% ifversion ghes < 3.2 %}**{% data variables.product.prodname_advanced_security %}**{% else %}**Security**{% endif %} in the sidebar, it means that your license doesn't include support for {% data variables.product.prodname_advanced_security %} features, including {% data variables.product.prodname_code_scanning %} and {% data variables.product.prodname_secret_scanning %}. The {% data variables.product.prodname_advanced_security %} license gives you and your users access to features that help you make your repositories and code more secure. {% ifversion ghes > 2.22 %}For more information, see "[About GitHub Advanced Security](/github/getting-started-with-github/about-github-advanced-security)" or contact {% data variables.contact.contact_enterprise_sales %}.{% endif %}
|
||||
If you can't see {% ifversion ghes < 3.2 %}**{% data variables.product.prodname_advanced_security %}**{% else %}**Security**{% endif %} in the sidebar, it means that your license doesn't include support for {% data variables.product.prodname_advanced_security %} features, including {% data variables.product.prodname_code_scanning %} and {% data variables.product.prodname_secret_scanning %}. The {% data variables.product.prodname_advanced_security %} license gives you and your users access to features that help you make your repositories and code more secure. {% ifversion ghes %}For more information, see "[About GitHub Advanced Security](/github/getting-started-with-github/about-github-advanced-security)" or contact {% data variables.contact.contact_enterprise_sales %}.{% endif %}
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
1. In the left sidebar, click {% ifversion ghes < 3.2 %}**{% data variables.product.prodname_advanced_security %}**{% else %}**Security**{% endif %}.{% ifversion ghes < 3.2 %}
|
||||
{% else %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
@@ -1 +1 @@
|
||||
To manage users in your enterprise with your identity provider, your enterprise must be enabled for {% data variables.product.prodname_emus %}, which are available with {% data variables.product.prodname_ghe_cloud %}. For more information, see "[About {% data variables.product.prodname_emus %}](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users)."
|
||||
To manage users in your enterprise with your identity provider, your enterprise must be enabled for {% data variables.product.prodname_emus %}, which are available with {% data variables.product.prodname_ghe_cloud %}. For more information, see "[About {% data variables.product.prodname_emus %}](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users)."
|
||||
|
||||
@@ -1 +1 @@
|
||||
If you have a GitHub Advanced Security license for your enterprise account, you can enforce policies to manage {% data variables.product.prodname_dotcom %} Advanced Security features for organizations owned by an enterprise account. For more information, see "[Enforcing policies for Advanced Security in your enterprise account](/enterprise-cloud@latest/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-advanced-security-in-your-enterprise)."
|
||||
If you have a GitHub Advanced Security license for your enterprise account, you can enforce policies to manage {% data variables.product.prodname_dotcom %} Advanced Security features for organizations owned by an enterprise account. For more information, see "[Enforcing policies for Advanced Security in your enterprise account](/enterprise-cloud@latest/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-advanced-security-in-your-enterprise)."
|
||||
|
||||
@@ -1,2 +1 @@
|
||||
{% ifversion fpt or ghes > 2.22 or ghae or ghec %} By default, {% data variables.product.product_name %} stores build logs and artifacts for 90 days, and this retention period can be customized. For more information, see "[Usage limits, billing, and administration](/actions/reference/usage-limits-billing-and-administration#artifact-and-log-retention-policy)".{% endif %}
|
||||
{% ifversion ghes = 2.22 %} {% data variables.product.product_name %} stores full build logs and artifacts for 90 days.{% endif %}
|
||||
By default, {% data variables.product.product_name %} stores build logs and artifacts for 90 days, and this retention period can be customized. For more information, see "[Usage limits, billing, and administration](/actions/reference/usage-limits-billing-and-administration#artifact-and-log-retention-policy)".
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
1. Enter a name for your runner group, and assign a policy for organization access.
|
||||
|
||||
You can configure a runner group to be accessible to a specific list of organizations, or all organizations in the enterprise. By default, only private repositories can access runners in a runner group, but you can override this. This setting can't be overridden if configuring an organization's runner group that was shared by an enterprise.
|
||||
You can configure a runner group to be accessible to a specific list of organizations, or all organizations in the enterprise. By default, only private repositories can access runners in a runner group, but you can override this. This setting can't be overridden if configuring an organization's runner group that was shared by an enterprise.
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
1. Enter a name for your runner group, and assign a policy for repository access.
|
||||
|
||||
You can configure a runner group to be accessible to a specific list of repositories, or to all repositories in the organization. By default, only private repositories can access runners in a runner group, but you can override this. This setting can't be overridden if configuring an organization's runner group that was shared by an enterprise.
|
||||
You can configure a runner group to be accessible to a specific list of repositories, or to all repositories in the organization. By default, only private repositories can access runners in a runner group, but you can override this. This setting can't be overridden if configuring an organization's runner group that was shared by an enterprise.
|
||||
|
||||
@@ -1 +1 @@
|
||||
1. In the "Labels" section, click {% octicon "gear" aria-label="The Gear icon" %}.
|
||||
1. In the "Labels" section, click {% octicon "gear" aria-label="The Gear icon" %}.
|
||||
|
||||
@@ -1 +1 @@
|
||||
1. Click **Create group** to create the group and apply the policy.
|
||||
1. Click **Create group** to create the group and apply the policy.
|
||||
|
||||
@@ -1 +1 @@
|
||||
1. In the left sidebar, under "Actions", click **Runners**.
|
||||
1. In the left sidebar, under "Actions", click **Runners**.
|
||||
|
||||
@@ -1 +1 @@
|
||||
1. In the left sidebar, click **Actions**.
|
||||
1. In the left sidebar, click **Actions**.
|
||||
|
||||
@@ -2,4 +2,4 @@
|
||||
issues, pulls requests, releases, security alerts, or discussions
|
||||
{%- else %}issues, pull requests, releases, or discussions
|
||||
{% endif %}
|
||||
<!-- `else` statement probably not picked up by GHES 3.1 deprecation script. Will need to review here -->
|
||||
<!-- `else` statement probably not picked up by GHES 3.1 deprecation script. Will need to review here -->
|
||||
|
||||
@@ -1 +1 @@
|
||||
You can choose the delivery method for notifications, as well as the frequency at which the notifications are sent to you.
|
||||
You can choose the delivery method for notifications, as well as the frequency at which the notifications are sent to you.
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
{% ifversion fpt or ghes > 3.1 or ghec %}
|
||||
To receive notifications about {% data variables.product.prodname_dependabot_alerts %} on repositories, you need to watch these repositories, and subscribe to receive "All Activity" notifications or configure custom settings to include "Security alerts." For more information, see "[Configuring your watch settings for an individual repository](/github/managing-subscriptions-and-notifications-on-github/setting-up-notifications/configuring-notifications#configuring-your-watch-settings-for-an-individual-repository)."
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
You can customize the way you are notified about {% data variables.product.prodname_dependabot_alerts %}. For example, you can receive a weekly digest email summarizing alerts for up to 10 of your repositories using the **Email a digest summary of vulnerabilities** and **Weekly security email digest** options.
|
||||
{% endif %}
|
||||
|
||||
{% ifversion ghes = 2.22 or ghes = 3.0 or ghes = 3.1 %}
|
||||
{% ifversion ghes = 3.0 or ghes = 3.1 %}
|
||||
By default, if your site administrator has configured email for notifications on your instance, you will receive {% data variables.product.prodname_dependabot_alerts %}:
|
||||
- by email, an email is sent every time a vulnerability {% ifversion ghes > 3.0 %}with a critical or high severity {% endif %}is found (**Email each time a vulnerability is found** option)
|
||||
- in the user interface, a warning is shown in your repository's file and code views if there are any vulnerable dependencies (**UI alerts** option)
|
||||
|
||||
@@ -1 +1 @@
|
||||
To perform any actions on {% data variables.product.prodname_dotcom %}, such as creating a pull request in a repository or changing an organization's billing settings, a person must have sufficient access to the relevant account or resource. This access is controlled by permissions. A permission is the ability to perform a specific action. For example, the ability to delete an issue is a permission. A role is a set of permissions you can assign to individuals or teams.
|
||||
To perform any actions on {% data variables.product.prodname_dotcom %}, such as creating a pull request in a repository or changing an organization's billing settings, a person must have sufficient access to the relevant account or resource. This access is controlled by permissions. A permission is the ability to perform a specific action. For example, the ability to delete an issue is a permission. A role is a set of permissions you can assign to individuals or teams.
|
||||
|
||||
@@ -1 +1 @@
|
||||
Security manager is an organization-level role that organization owners can assign to any team in an organization. When applied, it gives every member of the team permissions to manage security alerts and settings across your organization, as well as read permissions for all repositories in the organization.
|
||||
Security manager is an organization-level role that organization owners can assign to any team in an organization. When applied, it gives every member of the team permissions to manage security alerts and settings across your organization, as well as read permissions for all repositories in the organization.
|
||||
|
||||
@@ -2,4 +2,4 @@
|
||||
|
||||
**Note:** The security manager role is in public beta and subject to change. This feature is not available for organizations using legacy per-repository billing plans.
|
||||
|
||||
{% endnote %}
|
||||
{% endnote %}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{% ifversion ghes > 2.22 %}
|
||||
{% ifversion ghes %}
|
||||
1. Under "GitHub Packages", select **Enable GitHub Packages**.
|
||||

|
||||
{% endif %}
|
||||
|
||||
@@ -1,7 +1 @@
|
||||
{% ifversion ghes = 2.22 %}
|
||||
{% note %}
|
||||
|
||||
**Note:** {% data variables.product.prodname_registry %} is currently in beta for {% data variables.product.prodname_ghe_server %} 2.22. To join the beta for {% data variables.product.product_location %}, use the [sign-up form](https://resources.github.com/beta-signup/).
|
||||
|
||||
{% endnote %}
|
||||
{% endif %}
|
||||
<!-- 2148AF7B-5FF8-4B28-A808-D692FEE2225A -->
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{% tip %}
|
||||
|
||||
**Note**: If your site{% ifversion ghes < 3.0 %}'s source files are located in the default publishing source—`master` for user and organization sites or `gh-pages` for project sites—but your site{% endif %} has not published automatically, make sure someone with admin permissions and a verified email address has pushed to the publishing source.
|
||||
**Note**: If your site has not published automatically, make sure someone with admin permissions and a verified email address has pushed to the publishing source.
|
||||
|
||||
{% endtip %}
|
||||
|
||||
@@ -1 +1 @@
|
||||
1. {% ifversion fpt or ghes > 2.22 or ghae or ghec %}Decide{% else %}If you're creating a project site, decide{% endif %} which publishing source you want to use. {% ifversion ghes < 3.0 %}If you're creating a user or organization site, you must store your site's source code on the `master` branch.{% endif %} For more information, see "[About {% data variables.product.prodname_pages %}](/articles/about-github-pages#publishing-sources-for-github-pages-sites)."
|
||||
1. Decide which publishing source you want to use. For more information, see "[About {% data variables.product.prodname_pages %}](/articles/about-github-pages#publishing-sources-for-github-pages-sites)."
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
If your site is an independent project, you can create a new repository to store your site's source code. If your site is associated with an existing project, you can add the source code {% ifversion fpt or ghes > 2.22 or ghae or ghec %}to that project's repository, in a `/docs` folder on the default branch or on a different branch.{% else %}for your site to a `gh-pages` branch or a `docs` folder on the `master` branch in that project's repository.{% endif %} For example, if you're creating a site to publish documentation for a project that's already on {% data variables.product.product_name %}, you may want to store the source code for the site in the same repository as the project.
|
||||
If your site is an independent project, you can create a new repository to store your site's source code. If your site is associated with an existing project, you can add the source code to that project's repository, in a `/docs` folder on the default branch or on a different branch. For example, if you're creating a site to publish documentation for a project that's already on {% data variables.product.product_name %}, you may want to store the source code for the site in the same repository as the project.
|
||||
|
||||
{% ifversion fpt or ghec %}If the account that owns the repository uses {% data variables.product.prodname_free_user %} or {% data variables.product.prodname_free_team %} for organizations, the repository must be public.{% endif %}
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
If you have access to pull requests in more than 10,000 repositories, you will need to limit your search to a specific organization, user account, or repository to see results.
|
||||
If you have access to pull requests in more than 10,000 repositories, you will need to limit your search to a specific organization, user account, or repository to see results.
|
||||
|
||||
@@ -1,4 +1,2 @@
|
||||
1. On the pull request, click {% octicon "diff" aria-label="The file diff icon" %} **Files changed**.
|
||||
{% ifversion ghes < 3.0 %}
|
||||
{% else %}
|
||||
{% endif %}
|
||||

|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
1. Above the list of files, click {% octicon "download" aria-label="The download icon" %} **Code**.
|
||||

|
||||
1. To clone the repository using HTTPS, under "Clone with HTTPS", click {% octicon "clippy" aria-label="The clipboard icon" %}. To clone the repository using an SSH key, including a certificate issued by your organization's SSH certificate authority, click **Use SSH**, then click {% octicon "clippy" aria-label="The clipboard icon" %}.{% ifversion fpt or ghes > 2.22 or ghae or ghec %} To clone a repository using {% data variables.product.prodname_cli %}, click **Use {% data variables.product.prodname_cli %}**, then click {% octicon "clippy" aria-label="The clipboard icon" %}.{% endif %}
|
||||
1. To clone the repository using HTTPS, under "Clone with HTTPS", click {% octicon "clippy" aria-label="The clipboard icon" %}. To clone the repository using an SSH key, including a certificate issued by your organization's SSH certificate authority, click **Use SSH**, then click {% octicon "clippy" aria-label="The clipboard icon" %}. To clone a repository using {% data variables.product.prodname_cli %}, click **Use {% data variables.product.prodname_cli %}**, then click {% octicon "clippy" aria-label="The clipboard icon" %}.
|
||||

|
||||
{% ifversion fpt or ghes or ghae or ghec %}
|
||||
{% endif %}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{% ifversion fpt or ghes > 3.0 or ghec %}
|
||||
1. Under **Jobs** or in the visualization graph, click the job you want to see.
|
||||

|
||||
{% elsif ghes > 2.22 %}
|
||||
{% elsif ghes %}
|
||||
1. In the left sidebar, click the job you want to see.
|
||||

|
||||
{% else %}
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
If you want a CVE identification number for the security vulnerability in your project, and don't already have one, you can request a CVE identification number from {% data variables.product.prodname_dotcom %}. {% data variables.product.prodname_dotcom %} usually reviews the request within 72 hours. Requesting a CVE identification number doesn't make your security advisory public. If your security advisory is eligible for a CVE, {% data variables.product.prodname_dotcom %} will reserve a CVE identification number for your advisory. We'll then publish the CVE details after you make your security advisory public. Anyone with admin permissions to a security advisory can request a CVE identification number.
|
||||
|
||||
If you already have a CVE you want to use, for example, if you use a CVE Numbering Authority (CNA) other than {% data variables.product.prodname_dotcom %}, add the CVE to the security advisory form. This may happen, for example, if you want to get the advisory consistent with other communications you plan to send out at publication time. {% data variables.product.prodname_dotcom %} cannot assign CVEs to your project if it is covered by another CNA.
|
||||
If you already have a CVE you want to use, for example, if you use a CVE Numbering Authority (CNA) other than {% data variables.product.prodname_dotcom %}, add the CVE to the security advisory form. This may happen, for example, if you want to get the advisory consistent with other communications you plan to send out at publication time. {% data variables.product.prodname_dotcom %} cannot assign CVEs to your project if it is covered by another CNA.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{% ifversion fpt or ghes > 2.22 or ghec %}
|
||||
{% ifversion fpt or ghes or ghec %}
|
||||
1. Any failed steps are automatically expanded to display the results.
|
||||
{% ifversion fpt or ghes > 3.0 or ghec %}
|
||||
{% else %}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{% ifversion fpt or ghes > 2.22 or ghec %}
|
||||
{% ifversion fpt or ghes or ghec %}
|
||||
1. Optionally, to get a link to a specific line in the logs, click on the step's line number. You can then copy the link from the address bar of your web browser.
|
||||
{% ifversion fpt or ghes > 3.0 or ghec %}
|
||||

|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
If you enable email or web notifications for {% data variables.product.prodname_actions %}, you'll receive a notification when any workflow runs that you've triggered have completed. The notification will include the workflow run's status (including successful, failed, neutral, and canceled runs). You can also choose to receive a notification only when a workflow run has failed. For more information about enabling or disabling notifications, see "[About notifications](/account-and-profile/managing-subscriptions-and-notifications-on-github/setting-up-notifications/about-notifications)."
|
||||
|
||||
Notifications for scheduled workflows are sent to the user who initially created the workflow. If a different user updates the cron syntax in the workflow file, subsequent notifications will be sent to that user instead.{% ifversion fpt or ghes > 2.22 or ghec %} If a scheduled workflow is disabled and then re-enabled, notifications will be sent to the user who re-enabled the workflow rather than the user who last modified the cron syntax.{% endif %}
|
||||
Notifications for scheduled workflows are sent to the user who initially created the workflow. If a different user updates the cron syntax in the workflow file, subsequent notifications will be sent to that user instead.{% ifversion fpt or ghes or ghec %} If a scheduled workflow is disabled and then re-enabled, notifications will be sent to the user who re-enabled the workflow rather than the user who last modified the cron syntax.{% endif %}
|
||||
|
||||
You can also see the status of workflow runs on a repository's Actions tab. For more information, see "[Managing a workflow run](/actions/automating-your-workflow-with-github-actions/managing-a-workflow-run)."
|
||||
|
||||
@@ -11,4 +11,4 @@
|
||||
- Shibboleth
|
||||
{% elsif ghae %}
|
||||
- Azure Active Directory (Azure AD)
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
@@ -1 +1 @@
|
||||
There are special considerations when enabling SAML SSO for your enterprise account if any of the organizations owned by the enterprise account are already configured to use SAML SSO.
|
||||
There are special considerations when enabling SAML SSO for your enterprise account if any of the organizations owned by the enterprise account are already configured to use SAML SSO.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{% ifversion ghes > 2.22 %}
|
||||
{% ifversion ghes %}
|
||||
|
||||
{% note %}
|
||||
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
Provider | Supported secret | API slug
|
||||
--- | --- | ---
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Adafruit IO | Adafruit IO Key | adafruit_io_key{% endif %}
|
||||
Adafruit IO | Adafruit IO Key | adafruit_io_key
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
Adobe | Adobe Device Token | adobe_device_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
@@ -10,52 +9,39 @@ Adobe | Adobe Service Token | adobe_service_token{% endif %}
|
||||
Adobe | Adobe Short-Lived Access Token | adobe_short_lived_access_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
Adobe | Adobe JSON Web Token | adobe_jwt{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Alibaba Cloud | Alibaba Cloud Access Key ID | alibaba_cloud_access_key_id{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Alibaba Cloud | Alibaba Cloud Access Key Secret | alibaba_cloud_access_key_secret{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Amazon Web Services (AWS) | Amazon AWS Access Key ID | aws_access_key_id{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Amazon Web Services (AWS) | Amazon AWS Secret Access Key | aws_secret_access_key{% endif %}
|
||||
Alibaba Cloud | Alibaba Cloud Access Key ID | alibaba_cloud_access_key_id
|
||||
Alibaba Cloud | Alibaba Cloud Access Key Secret | alibaba_cloud_access_key_secret
|
||||
Amazon Web Services (AWS) | Amazon AWS Access Key ID | aws_access_key_id
|
||||
Amazon Web Services (AWS) | Amazon AWS Secret Access Key | aws_secret_access_key
|
||||
{%- ifversion fpt or ghec or ghes > 3.2 %}
|
||||
Amazon Web Services (AWS) | Amazon AWS Session Token | aws_session_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.2 %}
|
||||
Amazon Web Services (AWS) | Amazon AWS Temporary Access Key ID | aws_temporary_access_key_id{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
Asana | Asana Personal Access Token | asana_personal_access_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Atlassian | Atlassian API Token | atlassian_api_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Atlassian | Atlassian JSON Web Token | atlassian_jwt{% endif %}
|
||||
Atlassian | Atlassian API Token | atlassian_api_token
|
||||
Atlassian | Atlassian JSON Web Token | atlassian_jwt
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
Atlassian | Bitbucket Server Personal Access Token | bitbucket_server_personal_access_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Azure | Azure DevOps Personal Access Token | azure_devops_personal_access_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Azure | Azure SAS Token | azure_sas_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Azure | Azure Service Management Certificate | azure_management_certificate{% endif %}
|
||||
Azure | Azure DevOps Personal Access Token | azure_devops_personal_access_token
|
||||
Azure | Azure SAS Token | azure_sas_token
|
||||
Azure | Azure Service Management Certificate | azure_management_certificate
|
||||
{%- ifversion ghes < 3.4 or ghae or ghae-issue-5342 %}
|
||||
Azure | Azure SQL Connection String | azure_sql_connection_string{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Azure | Azure Storage Account Key | azure_storage_account_key{% endif %}
|
||||
Azure | Azure Storage Account Key | azure_storage_account_key
|
||||
{%- ifversion fpt or ghec or ghes > 3.2 %}
|
||||
Beamer | Beamer API Key | beamer_api_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
Checkout.com | Checkout.com Production Secret Key | checkout_production_secret_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
Checkout.com | Checkout.com Test Secret Key | checkout_test_secret_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Clojars | Clojars Deploy Token | clojars_deploy_token{% endif %}
|
||||
Clojars | Clojars Deploy Token | clojars_deploy_token
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
CloudBees CodeShip | CloudBees CodeShip Credential | codeship_credential{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.2 %}
|
||||
Contentful | Contentful Personal Access Token | contentful_personal_access_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Databricks | Databricks Access Token | databricks_access_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Discord | Discord Bot Token | discord_bot_token{% endif %}
|
||||
Databricks | Databricks Access Token | databricks_access_token
|
||||
Discord | Discord Bot Token | discord_bot_token
|
||||
{%- ifversion fpt or ghec or ghes > 3.0 or ghae %}
|
||||
Doppler | Doppler Personal Token | doppler_personal_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.0 or ghae %}
|
||||
@@ -66,18 +52,15 @@ Doppler | Doppler CLI Token | doppler_cli_token{% endif %}
|
||||
Doppler | Doppler SCIM Token | doppler_scim_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
Doppler | Doppler Audit Token | doppler_audit_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Dropbox | Dropbox Access Token | dropbox_access_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Dropbox | Dropbox Short Lived Access Token | dropbox_short_lived_access_token{% endif %}
|
||||
Dropbox | Dropbox Access Token | dropbox_access_token
|
||||
Dropbox | Dropbox Short Lived Access Token | dropbox_short_lived_access_token
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
Duffel | Duffel Live Access Token | duffel_live_access_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
Duffel | Duffel Test Access Token | duffel_test_access_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.0 or ghae %}
|
||||
Dynatrace | Dynatrace Access Token | dynatrace_access_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Dynatrace | Dynatrace Internal Token | dynatrace_internal_token{% endif %}
|
||||
Dynatrace | Dynatrace Internal Token | dynatrace_internal_token
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
EasyPost | EasyPost Production API Key | easypost_production_api_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
@@ -86,16 +69,13 @@ EasyPost | EasyPost Test API Key | easypost_test_api_key{% endif %}
|
||||
Facebook | Facebook Access Token | facebook_access_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
Fastly | Fastly API Token | fastly_api_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Finicity | Finicity App Key | finicity_app_key{% endif %}
|
||||
Finicity | Finicity App Key | finicity_app_key
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
Flutterwave | Flutterwave Live API Secret Key | flutterwave_live_api_secret_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
Flutterwave | Flutterwave Test API Secret Key | flutterwave_test_api_secret_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Frame.io | Frame.io JSON Web Token | frameio_jwt{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Frame.io| Frame.io Developer Token | frameio_developer_token{% endif %}
|
||||
Frame.io | Frame.io JSON Web Token | frameio_jwt
|
||||
Frame.io| Frame.io Developer Token | frameio_developer_token
|
||||
{%- ifversion fpt or ghec or ghes > 3.2 %}
|
||||
FullStory | FullStory API Key | fullstory_api_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
@@ -106,18 +86,13 @@ GitHub | GitHub OAuth Access Token | github_oauth_access_token{% endif %}
|
||||
GitHub | GitHub Refresh Token | github_refresh_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
GitHub | GitHub App Installation Access Token | github_app_installation_access_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
GitHub | GitHub SSH Private Key | github_ssh_private_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
GoCardless | GoCardless Live Access Token | gocardless_live_access_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
GoCardless | GoCardless Sandbox Access Token | gocardless_sandbox_access_token{% endif %}
|
||||
GitHub | GitHub SSH Private Key | github_ssh_private_key
|
||||
GoCardless | GoCardless Live Access Token | gocardless_live_access_token
|
||||
GoCardless | GoCardless Sandbox Access Token | gocardless_sandbox_access_token
|
||||
{%- ifversion fpt or ghec or ghes > 3.2 %}
|
||||
Google | Firebase Cloud Messaging Server Key | firebase_cloud_messaging_server_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Google | Google API Key | google_api_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Google | Google Cloud Private Key ID | google_cloud_private_key_id{% endif %}
|
||||
Google | Google API Key | google_api_key
|
||||
Google | Google Cloud Private Key ID | google_cloud_private_key_id
|
||||
{%- ifversion fpt or ghec or ghes > 3.2 %}
|
||||
Google | Google Cloud Storage Access Key Secret | google_cloud_storage_access_key_secret{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.2 %}
|
||||
@@ -130,10 +105,8 @@ Google | Google OAuth Client ID | google_oauth_client_id{% endif %}
|
||||
Google | Google OAuth Client Secret | google_oauth_client_secret{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
Grafana | Grafana API Key | grafana_api_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Hashicorp Terraform | Terraform Cloud / Enterprise API Token | terraform_api_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Hubspot | Hubspot API Key | hubspot_api_key{% endif %}
|
||||
Hashicorp Terraform | Terraform Cloud / Enterprise API Token | terraform_api_token
|
||||
Hubspot | Hubspot API Key | hubspot_api_key
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
Intercom | Intercom Access Token | intercom_access_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
@@ -152,10 +125,8 @@ Linear | Linear OAuth Access Token | linear_oauth_access_token{% endif %}
|
||||
Lob | Lob Live API Key | lob_live_api_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
Lob | Lob Test API Key | lob_test_api_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Mailchimp | Mailchimp API Key | mailchimp_api_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Mailgun | Mailgun API Key | mailgun_api_key{% endif %}
|
||||
Mailchimp | Mailchimp API Key | mailchimp_api_key
|
||||
Mailgun | Mailgun API Key | mailgun_api_key
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
MessageBird | MessageBird API Key | messagebird_api_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.2 %}
|
||||
@@ -166,18 +137,15 @@ New Relic | New Relic REST API Key | new_relic_rest_api_key{% endif %}
|
||||
New Relic | New Relic Insights Query Key | new_relic_insights_query_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.2 %}
|
||||
New Relic | New Relic License Key | new_relic_license_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
npm | npm Access Token | npm_access_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
NuGet | NuGet API Key | nuget_api_key{% endif %}
|
||||
npm | npm Access Token | npm_access_token
|
||||
NuGet | NuGet API Key | nuget_api_key
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
Onfido | Onfido Live API Token | onfido_live_api_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
Onfido | Onfido Sandbox API Token | onfido_sandbox_api_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
OpenAI | OpenAI API Key | openai_api_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Palantir | Palantir JSON Web Token | palantir_jwt{% endif %}
|
||||
Palantir | Palantir JSON Web Token | palantir_jwt
|
||||
{%- ifversion fpt or ghec or ghes > 3.2 %}
|
||||
PlanetScale | PlanetScale Database Password | planetscale_database_password{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.2 %}
|
||||
@@ -188,26 +156,18 @@ PlanetScale | PlanetScale Service Token | planetscale_service_token{% endif %}
|
||||
Plivo | Plivo Auth ID | plivo_auth_id{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.2 %}
|
||||
Plivo | Plivo Auth Token | plivo_auth_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Postman | Postman API Key | postman_api_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Proctorio | Proctorio Consumer Key | proctorio_consumer_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Proctorio | Proctorio Linkage Key | proctorio_linkage_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Proctorio | Proctorio Registration Key | proctorio_registration_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Proctorio | Proctorio Secret Key | proctorio_secret_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Pulumi | Pulumi Access Token | pulumi_access_token{% endif %}
|
||||
Postman | Postman API Key | postman_api_key
|
||||
Proctorio | Proctorio Consumer Key | proctorio_consumer_key
|
||||
Proctorio | Proctorio Linkage Key | proctorio_linkage_key
|
||||
Proctorio | Proctorio Registration Key | proctorio_registration_key
|
||||
Proctorio | Proctorio Secret Key | proctorio_secret_key
|
||||
Pulumi | Pulumi Access Token | pulumi_access_token
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
PyPI | PyPI API Token | pypi_api_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
RubyGems | RubyGems API Key | rubygems_api_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Samsara | Samsara API Token | samsara_api_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Samsara | Samsara OAuth Access Token | samsara_oauth_access_token{% endif %}
|
||||
Samsara | Samsara API Token | samsara_api_token
|
||||
Samsara | Samsara OAuth Access Token | samsara_oauth_access_token
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
SendGrid | SendGrid API Key | sendgrid_api_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.2 %}
|
||||
@@ -218,26 +178,16 @@ Sendinblue | Sendinblue SMTP Key | sendinblue_smtp_key{% endif %}
|
||||
Shippo | Shippo Live API Token | shippo_live_api_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
Shippo | Shippo Test API Token | shippo_test_api_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Shopify | Shopify App Shared Secret | shopify_app_shared_secret{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Shopify | Shopify Access Token | shopify_access_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Shopify | Shopify Custom App Access Token | shopify_custom_app_access_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Shopify | Shopify Private App Password | shopify_private_app_password{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Slack | Slack API Token | slack_api_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Slack | Slack Incoming Webhook URL | slack_incoming_webhook_url{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Slack | Slack Workflow Webhook URL | slack_workflow_webhook_url{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
SSLMate | SSLMate API Key | sslmate_api_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
SSLMate | SSLMate Cluster Secret | sslmate_cluster_secret{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Stripe | Stripe API Key | stripe_api_key{% endif %}
|
||||
Shopify | Shopify App Shared Secret | shopify_app_shared_secret
|
||||
Shopify | Shopify Access Token | shopify_access_token
|
||||
Shopify | Shopify Custom App Access Token | shopify_custom_app_access_token
|
||||
Shopify | Shopify Private App Password | shopify_private_app_password
|
||||
Slack | Slack API Token | slack_api_token
|
||||
Slack | Slack Incoming Webhook URL | slack_incoming_webhook_url
|
||||
Slack | Slack Workflow Webhook URL | slack_workflow_webhook_url
|
||||
SSLMate | SSLMate API Key | sslmate_api_key
|
||||
SSLMate | SSLMate Cluster Secret | sslmate_cluster_secret
|
||||
Stripe | Stripe API Key | stripe_api_key
|
||||
{%- ifversion fpt or ghec or ghes > 3.0 or ghae %}
|
||||
Stripe | Stripe Live API Secret Key | stripe_live_secret_key{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.0 or ghae %}
|
||||
@@ -252,11 +202,8 @@ Stripe | Stripe Webhook Signing Secret | stripe_webhook_signing_secret{% endif %
|
||||
Tableau | Tableau Personal Access Token | tableau_personal_access_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 3.1 or ghae-next %}
|
||||
Telegram | Telegram Bot Token | telegram_bot_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Tencent Cloud | Tencent Cloud Secret ID | tencent_cloud_secret_id{% endif %}
|
||||
Tencent Cloud | Tencent Cloud Secret ID | tencent_cloud_secret_id
|
||||
{%- ifversion fpt or ghec or ghes > 3.3 %}
|
||||
Twilio | Twilio Access Token | twilio_access_token{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Twilio | Twilio Account String Identifier | twilio_account_sid{% endif %}
|
||||
{%- ifversion fpt or ghec or ghes > 2.22 or ghae %}
|
||||
Twilio | Twilio API Key | twilio_api_key{% endif %}
|
||||
Twilio | Twilio Account String Identifier | twilio_account_sid
|
||||
Twilio | Twilio API Key | twilio_api_key
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
1. Optionally, type a welcome message for the tier.
|
||||

|
||||

|
||||
|
||||
@@ -2,4 +2,4 @@
|
||||
|
||||
**Deprecation notice:** The legacy {% data variables.contact.contact_enterprise_portal %} will be deprecated on November 1, 2021. Any new requests should be submitted through the {% data variables.contact.contact_support_portal %}. For more information, see "[About the Support Portal](https://support.github.com/about-support-portal-enterprise)."
|
||||
|
||||
{% endwarning %}
|
||||
{% endwarning %}
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
1. Click **Generate new token**.
|
||||

|
||||

|
||||
|
||||
@@ -1 +1 @@
|
||||
Setting a webhook secret allows you to ensure that `POST` requests sent to the payload URL are from {% data variables.product.product_name %}. When you set a secret, you'll receive the {% ifversion fpt or ghes > 2.22 or ghec %}`X-Hub-Signature` and `X-Hub-Signature-256` headers{% elsif ghes < 3.0 %}`X-Hub-Signature` header{% elsif ghae %}`X-Hub-Signature-256` header{% endif %} in the webhook `POST` request. For more information on how to use a secret with a signature header to secure your webhook payloads, see "[Securing your webhooks](/webhooks/securing/)."
|
||||
Setting a webhook secret allows you to ensure that `POST` requests sent to the payload URL are from {% data variables.product.product_name %}. When you set a secret, you'll receive the {% ifversion fpt or ghes or ghec %}`X-Hub-Signature` and `X-Hub-Signature-256` headers{% elsif ghae %}`X-Hub-Signature-256` header{% endif %} in the webhook `POST` request. For more information on how to use a secret with a signature header to secure your webhook payloads, see "[Securing your webhooks](/webhooks/securing/)."
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
The webhook REST APIs enable you to manage repository{% ifversion ghes < 3.0 %} and organization{% else %}, organization, and app{% endif %} webhooks.{% ifversion fpt or ghes > 3.2 or ghae or ghec %} You can use this API to list webhook deliveries for a webhook, or get and redeliver an individual delivery for a webhook, which can be integrated into an external app or service.{% endif %}{% ifversion fpt or ghes > 2.22 or ghae or ghec %} You can also use the REST API to change the configuration of the webhook. For example, you can modify the payload URL, content type, SSL verification, and secret.{% endif %} For more information, see:
|
||||
The webhook REST APIs enable you to manage repository, organization, and app webhooks.{% ifversion fpt or ghes > 3.2 or ghae or ghec %} You can use this API to list webhook deliveries for a webhook, or get and redeliver an individual delivery for a webhook, which can be integrated into an external app or service.{% endif %} You can also use the REST API to change the configuration of the webhook. For example, you can modify the payload URL, content type, SSL verification, and secret. For more information, see:
|
||||
|
||||
- [Repository Webhooks REST API](/rest/reference/repos#webhooks)
|
||||
- [Organization Webhooks REST API](/rest/reference/orgs#webhooks){% ifversion fpt or ghes > 2.22 or ghae or ghec %}
|
||||
- [{% data variables.product.prodname_github_app %} Webhooks REST API](/rest/reference/apps#webhooks){% endif %}
|
||||
- [Organization Webhooks REST API](/rest/reference/orgs#webhooks)
|
||||
- [{% data variables.product.prodname_github_app %} Webhooks REST API](/rest/reference/apps#webhooks)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
Key | Type | Description
|
||||
----|------|-------------
|
||||
`action`|`string` | The action performed. Can be one of: <ul><li> `queued` - A new job was created.</li><li> `in_progress` - The job has started processing on the runner.</li><li> `completed` - The `status` of the job is `completed`.</li></ul>
|
||||
`workflow_job`|`object`| The workflow job. Many `workflow_job` keys, such as `head_sha`, `conclusion`, and `started_at` are the same as those in a [`check_run`](#check_run) object.
|
||||
`workflow_job`|`object`| The workflow job. Many `workflow_job` keys, such as `head_sha`, `conclusion`, and `started_at` are the same as those in a [`check_run`](#check_run) object.
|
||||
|
||||
Reference in New Issue
Block a user