26
.github/actions/clone-translations/action.yml
vendored
@@ -17,13 +17,6 @@ runs:
|
||||
token: ${{ inputs.token }}
|
||||
path: translations/zh-cn
|
||||
|
||||
- name: Clone Japanese
|
||||
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
|
||||
with:
|
||||
repository: github/docs-internal.ja-jp
|
||||
token: ${{ inputs.token }}
|
||||
path: translations/ja-jp
|
||||
|
||||
- name: Clone Spanish
|
||||
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
|
||||
with:
|
||||
@@ -38,12 +31,19 @@ runs:
|
||||
token: ${{ inputs.token }}
|
||||
path: translations/pt-br
|
||||
|
||||
- name: Clone German
|
||||
- name: Clone Russian
|
||||
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
|
||||
with:
|
||||
repository: github/docs-internal.de-de
|
||||
repository: github/docs-internal.ru-ru
|
||||
token: ${{ inputs.token }}
|
||||
path: translations/de-de
|
||||
path: translations/ru-ru
|
||||
|
||||
- name: Clone Japanese
|
||||
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
|
||||
with:
|
||||
repository: github/docs-internal.ja-jp
|
||||
token: ${{ inputs.token }}
|
||||
path: translations/ja-jp
|
||||
|
||||
- name: Clone French
|
||||
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
|
||||
@@ -52,12 +52,12 @@ runs:
|
||||
token: ${{ inputs.token }}
|
||||
path: translations/fr-fr
|
||||
|
||||
- name: Clone Russian
|
||||
- name: Clone German
|
||||
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
|
||||
with:
|
||||
repository: github/docs-internal.ru-ru
|
||||
repository: github/docs-internal.de-de
|
||||
token: ${{ inputs.token }}
|
||||
path: translations/ru-ru
|
||||
path: translations/de-de
|
||||
|
||||
- name: Clone Korean
|
||||
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
|
||||
|
||||
@@ -48,7 +48,7 @@ jobs:
|
||||
script: |
|
||||
// Edit this list for the definitive list of languages
|
||||
// (other than English) we want to index in Elasticsearch.
|
||||
const allNonEnglish = ["ja", "es", "pt", "zh", "ru", "fr", "ko", "de"]
|
||||
const allNonEnglish = ["zh", "es", "pt", "ru", "ja", "fr", "de", "ko"]
|
||||
const allPossible = ["en", ...allNonEnglish]
|
||||
|
||||
if (context.eventName === "workflow_run") {
|
||||
|
||||
12
.github/workflows/test.yml
vendored
@@ -44,15 +44,15 @@ jobs:
|
||||
return [
|
||||
{ name: 'content', path: 'tests/content', },
|
||||
{ name: 'graphql', path: 'tests/graphql', },
|
||||
{ name: 'meta', path: 'tests/meta', },
|
||||
{ name: 'rendering', path: 'tests/rendering', },
|
||||
{ name: 'routing', path: 'tests/routing', },
|
||||
{ name: 'unit', path: 'tests/unit', },
|
||||
{ name: 'linting', path: 'tests/linting', },
|
||||
{ name: 'rendering-fixtures', path: 'tests/rendering-fixtures', },
|
||||
{ name: 'events', path: 'src/events/tests', },
|
||||
{ name: 'linting', path: 'tests/linting', },
|
||||
{ name: 'meta', path: 'tests/meta', },
|
||||
{ name: 'routing', path: 'tests/routing', },
|
||||
{ name: 'rendering', path: 'tests/rendering', },
|
||||
{ name: 'rendering-fixtures', path: 'tests/rendering-fixtures', },
|
||||
context.payload.repository.full_name === 'github/docs-internal' &&
|
||||
{ name: 'translations', path: 'tests/translations', },
|
||||
{ name: 'unit', path: 'tests/unit', },
|
||||
].filter(Boolean)
|
||||
|
||||
test:
|
||||
|
||||
21
.github/workflows/translation-health-report.yml
vendored
@@ -24,29 +24,25 @@ jobs:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- language: zh
|
||||
language_dir: translations/zh-cn
|
||||
language_repo: github/docs-internal.zh-cn
|
||||
|
||||
- language: es
|
||||
language_dir: translations/es-es
|
||||
language_repo: github/docs-internal.es-es
|
||||
|
||||
- language: ja
|
||||
language_dir: translations/ja-jp
|
||||
language_repo: github/docs-internal.ja-jp
|
||||
|
||||
- language: pt
|
||||
language_dir: translations/pt-br
|
||||
language_repo: github/docs-internal.pt-br
|
||||
|
||||
- language: zh
|
||||
language_dir: translations/zh-cn
|
||||
language_repo: github/docs-internal.zh-cn
|
||||
|
||||
- language: ru
|
||||
language_dir: translations/ru-ru
|
||||
language_repo: github/docs-internal.ru-ru
|
||||
|
||||
- language: ko
|
||||
language_dir: translations/ko-kr
|
||||
language_repo: github/docs-internal.ko-kr
|
||||
- language: ja
|
||||
language_dir: translations/ja-jp
|
||||
language_repo: github/docs-internal.ja-jp
|
||||
|
||||
- language: fr
|
||||
language_dir: translations/fr-fr
|
||||
@@ -56,6 +52,9 @@ jobs:
|
||||
language_dir: translations/de-de
|
||||
language_repo: github/docs-internal.de-de
|
||||
|
||||
- language: ko
|
||||
language_dir: translations/ko-kr
|
||||
language_repo: github/docs-internal.ko-kr
|
||||
steps:
|
||||
- name: Checkout the docs-internal repo
|
||||
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
|
||||
|
||||
@@ -107,7 +107,7 @@ FROM preview as production
|
||||
|
||||
# Override what was set for previews
|
||||
# Make this match the default of `Object.keys(languages)` in lib/languages.js
|
||||
ENV ENABLED_LANGUAGES "en,zh,ja,es,pt,de,fr,ru,ko"
|
||||
ENV ENABLED_LANGUAGES "en,zh,es,pt,ru,ja,fr,de,ko"
|
||||
|
||||
# Copy in all translations
|
||||
COPY --chown=node:node translations ./translations
|
||||
|
||||
|
Before Width: | Height: | Size: 48 KiB After Width: | Height: | Size: 73 KiB |
|
Before Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 16 KiB |
BIN
assets/images/help/sponsors/choose-fiscal-host-dropdown.png
Normal file
|
After Width: | Height: | Size: 39 KiB |
|
Before Width: | Height: | Size: 7.4 KiB |
|
Before Width: | Height: | Size: 8.1 KiB |
|
Before Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 46 KiB |
|
Before Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 42 KiB |
|
Before Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 41 KiB |
|
Before Width: | Height: | Size: 7.0 KiB |
|
Before Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 6.5 KiB |
|
Before Width: | Height: | Size: 36 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 35 KiB |
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 14 KiB |
BIN
assets/images/help/sponsors/fiscal-host-profile-url-field.png
Normal file
|
After Width: | Height: | Size: 79 KiB |
|
Before Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 103 KiB |
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 5.7 KiB |
|
Before Width: | Height: | Size: 7.8 KiB |
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 144 KiB |
|
Before Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 9.7 KiB |
|
Before Width: | Height: | Size: 75 KiB |
|
Before Width: | Height: | Size: 29 KiB |
|
Before Width: | Height: | Size: 43 KiB |
|
Before Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 8.0 KiB |
|
Before Width: | Height: | Size: 7.9 KiB |
|
Before Width: | Height: | Size: 8.0 KiB |
|
Before Width: | Height: | Size: 35 KiB |
|
Before Width: | Height: | Size: 33 KiB |
|
Before Width: | Height: | Size: 7.0 KiB |
|
Before Width: | Height: | Size: 47 KiB |
|
Before Width: | Height: | Size: 9.7 KiB |
|
Before Width: | Height: | Size: 33 KiB |
|
Before Width: | Height: | Size: 41 KiB |
|
Before Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 38 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 7.9 KiB |
@@ -1,6 +1,6 @@
|
||||
---
|
||||
title: Rate limits for GitHub Apps
|
||||
intro: '{% data reusables.shortdesc.rate_limits_github_apps %}'
|
||||
intro: '{% data reusables.shortdesc.rate_limits_apps %}'
|
||||
redirect_from:
|
||||
- /early-access/integrations/rate-limits
|
||||
- /apps/building-integrations/setting-up-and-registering-github-apps/about-rate-limits-for-github-apps
|
||||
@@ -18,65 +18,63 @@ topics:
|
||||
shortTitle: Rate limits
|
||||
---
|
||||
|
||||
{% data reusables.enterprise.rate_limit %}
|
||||
## About rate limits for {% data variables.product.prodname_github_apps %}
|
||||
|
||||
{% ifversion ghec or fpt or ghae %}
|
||||
|
||||
{% data variables.product.company_short %} sets a limit on the number of requests a {% data variables.product.prodname_github_app %} can send to the server within a specific time period. This limit helps to prevent abuse and denial-of-service attacks, and ensures that the system remains available for all users.
|
||||
|
||||
{% endif %}
|
||||
|
||||
{% ifversion ghec or fpt %}
|
||||
|
||||
{% data variables.product.company_short %} may apply additional secondary rate limits to some actions, to ensure API availability. You can avoid secondary rate limits by following best practices and staying within the rate limit guidelines listed below. For more information about secondary rate limits, see "[AUTOTITLE](/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)" and "[AUTOTITLE](/rest/overview/resources-in-the-rest-api#secondary-rate-limits)."
|
||||
|
||||
{% elsif ghes %}
|
||||
|
||||
{% note %}
|
||||
|
||||
Rate limits are disabled by default for {% data variables.product.product_name %}. Contact your site administrator to confirm the rate limits for your instance.
|
||||
|
||||
{% endnote %}
|
||||
|
||||
When rate limits are enabled for your {% data variables.product.product_name %} instance, there is a limit on the number of requests a {% data variables.product.prodname_github_app %} can send to the server within a specific time period. This limit helps to ensure the system remains available for all users.
|
||||
|
||||
{% endif %}
|
||||
|
||||
## Determining rate limits for a {% data variables.product.prodname_github_app %}
|
||||
|
||||
{% data reusables.rest-api.always-check-your-limit %}
|
||||
|
||||
{% ifversion ghec or fpt %}
|
||||
|
||||
## About rate limits for apps
|
||||
|
||||
Rate limits for {% data variables.product.prodname_github_apps %} and {% data variables.product.prodname_oauth_apps %} depend on the plan for the organization where you install the application. For more information, see "[AUTOTITLE](/get-started/learning-about-github/githubs-products)" and "[AUTOTITLE](/get-started/learning-about-github/types-of-github-accounts#organization-accounts)."
|
||||
The rate limits for requests made by a {% data variables.product.prodname_github_app %} depend on where the app is installed. If the app is installed on an organization or repository owned by an enterprise on {% data variables.location.product_location %}, the rate limit will be higher than for an app that is installed outside an enterprise. For more information, see "[AUTOTITLE](/get-started/learning-about-github/githubs-products)" and "[AUTOTITLE](/get-started/learning-about-github/types-of-github-accounts#organization-accounts)."
|
||||
|
||||
{% endif %}
|
||||
|
||||
## Server-to-server requests
|
||||
Rate limits {% ifversion ghec or fpt %}also {% endif %}depend on whether the {% data variables.product.prodname_github_app %} authenticates with a user access token or with an installation access token. A user access token allows an app to act on behalf of a specific user, after the user authorizes the app. An installation access token allows an app to attribute actions to the app itself. For more information about user and installation access tokens, "[AUTOTITLE](/apps/creating-github-apps/authenticating-with-a-github-app/about-authentication-with-a-github-app)."
|
||||
|
||||
{% ifversion ghec or fpt %}
|
||||
### Installation access tokens{% ifversion fpt or ghec %} on {% data variables.product.prodname_dotcom_the_website %}{% endif %}
|
||||
|
||||
### Default server-to-server rate limits for {% data variables.product.prodname_dotcom_the_website %}
|
||||
|
||||
{% endif %}
|
||||
|
||||
{% data variables.product.prodname_github_apps %} making server-to-server requests use the installation's minimum rate limit of 5,000 requests per hour. If an application is installed on an organization with more than 20 users, the application receives another 50 requests per hour for each user. Installations that have more than 20 repositories receive another 50 requests per hour for each repository. The maximum rate limit for an installation is 12,500 requests per hour.
|
||||
{% data variables.product.prodname_github_apps %} authenticating with an installation access token use the installation's minimum rate limit of 5,000 requests per hour. If an application is installed on an organization with more than 20 users, the application receives another 50 requests per hour for each user. Installations that have more than 20 repositories receive another 50 requests per hour for each repository. The maximum rate limit for an installation is 12,500 requests per hour.
|
||||
|
||||
{% ifversion fpt or ghec %}
|
||||
|
||||
### Server-to-server rate limits for {% data variables.product.prodname_ghe_cloud %}
|
||||
|
||||
{% endif %}
|
||||
|
||||
{% ifversion fpt or ghec %}
|
||||
### Installation access tokens on {% data variables.product.prodname_ghe_cloud %}
|
||||
|
||||
{% data variables.product.prodname_github_apps %} that are installed on an organization within an enterprise on {% data variables.location.product_location %} are subject to a limit of 15,000 requests per hour per organization that has installed the app.
|
||||
|
||||
{% endif %}
|
||||
|
||||
## User-to-server requests
|
||||
### User access tokens{% ifversion fpt or ghec %} on {% data variables.product.prodname_dotcom_the_website %}{% endif %}
|
||||
|
||||
{% data variables.product.prodname_github_apps %} and {% data variables.product.prodname_oauth_apps %} can also act on behalf of a user, making user-to-server requests after the user authorizes the app. For more information, see "[AUTOTITLE](/apps/using-github-apps/authorizing-github-apps)" and "[AUTOTITLE](/apps/oauth-apps/using-oauth-apps/authorizing-oauth-apps)."
|
||||
|
||||
User-to-server requests from {% data variables.product.prodname_oauth_apps %} are authenticated with an OAuth token. User-to-server requests from {% data variables.product.prodname_github_apps %} are authenticated with either an OAuth token or an expiring user access token. For more information, see "[AUTOTITLE](/apps/creating-github-apps/authenticating-with-a-github-app/identifying-and-authorizing-users-for-github-apps#identifying-and-authorizing-users-for-github-apps)" and "[AUTOTITLE](/apps/oauth-apps/building-oauth-apps/authorizing-oauth-apps)."
|
||||
{% ifversion ghes %}By default, user access token{% else %}User access token{% endif %} requests are limited to {% ifversion ghae %}15,000{% elsif fpt or ghec or ghes %}5,000{% endif %} requests per hour and per authenticated user.
|
||||
|
||||
{% ifversion fpt or ghec %}
|
||||
|
||||
### Default user-to-server rate limits for {% data variables.product.prodname_dotcom_the_website %}
|
||||
### User access tokens on {% data variables.product.prodname_ghe_cloud %}
|
||||
|
||||
{% endif %}
|
||||
|
||||
{% ifversion ghec %}
|
||||
|
||||
The rate limits for user-to-server requests made by {% data variables.product.prodname_github_apps %} depend on where the app is installed. If the app is installed on organizations or repositories owned by an enterprise on {% data variables.location.product_location %}, then the rate is higher than for installations outside an enterprise.
|
||||
|
||||
{% endif %}
|
||||
|
||||
{% data reusables.apps.user-to-server-rate-limits %}
|
||||
|
||||
{% ifversion fpt or ghec %}
|
||||
|
||||
### User-to-server rate limits for {% data variables.product.prodname_ghe_cloud %}
|
||||
|
||||
{% data reusables.apps.user-to-server-rate-limits-ghec %}
|
||||
User access token requests are subject to a higher limit of 15,000 requests per hour and per authenticated user when the request is from a {% data variables.product.prodname_github_app %} that is owned by a {% data variables.product.prodname_ghe_cloud %} organization.
|
||||
|
||||
{% endif %}
|
||||
|
||||
|
||||
@@ -13,6 +13,7 @@ versions:
|
||||
topics:
|
||||
- OAuth Apps
|
||||
children:
|
||||
- /rate-limits-for-oauth-apps
|
||||
- /creating-an-oauth-app
|
||||
- /authenticating-to-the-rest-api-with-an-oauth-app
|
||||
- /authorizing-oauth-apps
|
||||
|
||||
@@ -0,0 +1,59 @@
|
||||
---
|
||||
title: Rate limits for OAuth Apps
|
||||
intro: '{% data reusables.shortdesc.rate_limits_apps %}'
|
||||
versions:
|
||||
fpt: '*'
|
||||
ghes: '*'
|
||||
ghae: '*'
|
||||
ghec: '*'
|
||||
topics:
|
||||
- OAuth Apps
|
||||
shortTitle: Rate limits
|
||||
---
|
||||
|
||||
## About rate limits for {% data variables.product.prodname_oauth_apps %}
|
||||
|
||||
{% ifversion ghec or fpt or ghae %}
|
||||
|
||||
{% data variables.product.company_short %} sets a limit on the number of requests an {% data variables.product.prodname_oauth_app %} can send to the server within a specific time period. This limit helps to prevent abuse and denial-of-service attacks, and ensures that the system remains available for all users.
|
||||
|
||||
{% endif %}
|
||||
|
||||
{% ifversion ghec or fpt %}
|
||||
|
||||
{% data variables.product.company_short %} may apply additional secondary rate limits to some actions, to ensure API availability. You can avoid secondary rate limits by following best practices and staying within the rate limit guidelines listed below. For more information about secondary rate limits, see "[AUTOTITLE](/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)" and "[AUTOTITLE](/rest/overview/resources-in-the-rest-api#secondary-rate-limits)."
|
||||
|
||||
{% elsif ghes %}
|
||||
|
||||
{% note %}
|
||||
|
||||
Rate limits are disabled by default for {% data variables.product.product_name %}. Contact your site administrator to confirm the rate limits for your instance.
|
||||
|
||||
{% endnote %}
|
||||
|
||||
When rate limits are enabled for your {% data variables.product.product_name %} instance, there is a limit on the number of requests an {% data variables.product.prodname_oauth_app %} can send to the server within a specific time period. This limit helps to ensure the system remains available for all users.
|
||||
|
||||
{% endif %}
|
||||
|
||||
{% data variables.product.prodname_oauth_apps %} act on behalf of a user, by making requests with a user access token after the user authorizes the app. User access token requests from {% data variables.product.prodname_oauth_apps %} are authenticated with an OAuth token. For more information, see "[AUTOTITLE](/apps/oauth-apps/building-oauth-apps/authorizing-oauth-apps)."
|
||||
|
||||
## Determining rate limits for an {% data variables.product.prodname_oauth_app %}
|
||||
|
||||
{% data reusables.rest-api.always-check-your-limit %}
|
||||
|
||||
{% ifversion ghes %}By default, {% data variables.product.prodname_oauth_apps %}{% else %}{% data variables.product.prodname_oauth_apps %}{% endif %} are limited to {% ifversion ghae %}15,000{% elsif fpt or ghec or ghes %}5,000{% endif %} requests per hour and per authenticated user. All requests from {% data variables.product.prodname_oauth_apps %} that are authorized by a user or a {% data variables.product.pat_generic %} owned by the user, and requests authenticated with any of the user's authentication credentials, share the same quota of {% ifversion ghae %}15,000{% elsif fpt or ghec or ghes %}5,000{% endif %} requests per hour for that user.
|
||||
|
||||
{% ifversion fpt or ghec %}
|
||||
|
||||
{% data variables.product.prodname_oauth_apps %} are subject to a higher limit of 15,000 requests per hour and per authenticated user when both of the following are true:
|
||||
|
||||
- The request is from an {% data variables.product.prodname_oauth_app %} that's owned or approved by a {% data variables.product.prodname_ghe_cloud %} organization.
|
||||
- The authenticated user is a member of the {% data variables.product.prodname_ghe_cloud %} organization.
|
||||
|
||||
For more information about rate limits, see "[AUTOTITLE](/rest/overview/resources-in-the-rest-api#rate-limiting)" and "[AUTOTITLE](/rest/rate-limit#understanding-your-rate-limit-status)" in the REST API documentation.
|
||||
|
||||
{% endif %}
|
||||
|
||||
## Further reading
|
||||
|
||||
- "[AUTOTITLE](/graphql/overview/resource-limitations)" in the GraphQL API documentation
|
||||
@@ -33,5 +33,5 @@ When you downgrade or cancel a sponsorship, the change will become effective on
|
||||
{% data reusables.user-settings.access_settings %}
|
||||
{% data reusables.user-settings.billing_plans %}
|
||||
{% data reusables.sponsors.billing-switcher %}
|
||||
3. Under "{% data variables.product.prodname_sponsors %}", next to the sponsored account, click your current tier amount, then click **Cancel sponsorship**.
|
||||
4. Review the alert about canceling your sponsorship, then click **OK**.
|
||||
1. Under "{% data variables.product.prodname_sponsors %}", next to the sponsored account, click your current tier amount, then click **Cancel sponsorship**.
|
||||
1. Review the alert about canceling your sponsorship, then click **OK**.
|
||||
@@ -22,7 +22,6 @@ You can also disable updates from accounts your organization sponsors. For more
|
||||
{% data reusables.profile.access_org %}
|
||||
{% data reusables.profile.org_settings %}
|
||||
1. Under "Sponsors update email (Private)", type the email address you want to receive updates from accounts your organization sponsors.
|
||||

|
||||
1. Click **Update profile**.
|
||||

|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@ shortTitle: Display a sponsor button
|
||||
---
|
||||
## About FUNDING files
|
||||
|
||||
You can configure your sponsor button by editing a _FUNDING.yml_ file in your repository's `.github` folder, on the default branch. You can configure the button to include sponsored developers in {% data variables.product.prodname_sponsors %}, external funding platforms, or a custom funding URL. For more information about {% data variables.product.prodname_sponsors %}, see "[AUTOTITLE](/sponsors/getting-started-with-github-sponsors/about-github-sponsors)."
|
||||
You can configure your sponsor button by editing a `FUNDING.yml` file in your repository's `.github` folder, on the default branch. You can configure the button to include sponsored developers in {% data variables.product.prodname_sponsors %}, external funding platforms, or a custom funding URL. For more information about {% data variables.product.prodname_sponsors %}, see "[AUTOTITLE](/sponsors/getting-started-with-github-sponsors/about-github-sponsors)."
|
||||
|
||||
You can add one username, package name, or project name per external funding platform and up to four custom URLs. You can add one organization and up to four sponsored developers in {% data variables.product.prodname_sponsors %}. Add each platform on a new line, using the following syntax:
|
||||
|
||||
@@ -43,7 +43,7 @@ Java | `maven`
|
||||
PHP | `packagist`
|
||||
C# | `nuget`
|
||||
|
||||
Here's an example _FUNDING.yml_ file:
|
||||
Here's an example `FUNDING.yml` file:
|
||||
```
|
||||
github: [octocat, surftocat]
|
||||
patreon: octocat
|
||||
@@ -71,12 +71,15 @@ Anyone with admin permissions can enable a sponsor button in a repository.
|
||||
|
||||
{% data reusables.repositories.navigate-to-repo %}
|
||||
{% data reusables.repositories.sidebar-settings %}
|
||||
3. Under Features, select **Sponsorships**.
|
||||
1. Under Features, select **Sponsorships**.
|
||||
|
||||

|
||||
4. Under "Sponsorships", click **Set up sponsor button** or **Override funding links**.
|
||||
|
||||
1. Under "Sponsorships", click **Set up sponsor button** or **Override funding links**.
|
||||
|
||||

|
||||
5. In the file editor, follow the instructions in the _FUNDING.yml_ file to add links to your funding locations.
|
||||

|
||||
|
||||
1. In the file editor, follow the instructions in the `FUNDING.yml` file to add links to your funding locations.
|
||||
{% data reusables.files.write_commit_message %}
|
||||
{% data reusables.files.choose_commit_branch %}
|
||||
{% data reusables.files.propose_new_file %}
|
||||
|
||||
@@ -120,7 +120,7 @@ Read [more about OAuth2](/apps/oauth-apps/building-oauth-apps). Note that OAuth
|
||||
curl -u my_client_id:my_client_secret '{% data variables.product.api_url_pre %}/user/repos'
|
||||
```
|
||||
|
||||
Using your `client_id` and `client_secret` does _not_ authenticate as a user, it will only identify your OAuth App to increase your rate limit. Permissions are only granted to users, not applications, and you will only get back data that an unauthenticated user would see. For this reason, you should only use the OAuth2 key/secret in server-to-server scenarios. Don't leak your OAuth App's client secret to your users.
|
||||
Using your `client_id` and `client_secret` does _not_ authenticate as a user, it will only identify your {% data variables.product.prodname_oauth_app %} to increase your rate limit. Permissions are only granted to users, not applications, and you will only get back data that an unauthenticated user would see. Don't leak your {% data variables.product.prodname_oauth_app %}'s client secret to your users.
|
||||
|
||||
{% ifversion ghes %}
|
||||
You will be unable to authenticate using your OAuth2 key and secret while in private mode, and trying to authenticate will return `401 Unauthorized`. For more information, see "[AUTOTITLE](/admin/configuration/configuring-your-enterprise/enabling-private-mode)".
|
||||
@@ -329,15 +329,18 @@ Different types of API requests to {% data variables.location.product_location %
|
||||
|
||||
#### Rate limits for requests from personal accounts
|
||||
|
||||
Direct API requests that you authenticate with a {% data variables.product.pat_generic %} are user-to-server requests. An OAuth App or GitHub App can also make a user-to-server request on your behalf after you authorize the app. For more information, see "[AUTOTITLE](/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token)," "[AUTOTITLE](/apps/oauth-apps/using-oauth-apps/authorizing-oauth-apps)," and "[AUTOTITLE](/apps/using-github-apps/authorizing-github-apps)."
|
||||
You can make direct API requests that you authenticate with a {% data variables.product.pat_generic %}. An {% data variables.product.prodname_oauth_app %} or {% data variables.product.prodname_github_app %} can also make a request on your behalf after you authorize the app. For more information, see "[AUTOTITLE](/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token)," "[AUTOTITLE](/apps/oauth-apps/using-oauth-apps/authorizing-oauth-apps)," and "[AUTOTITLE](/apps/using-github-apps/authorizing-github-apps)."
|
||||
|
||||
{% data variables.product.product_name %} associates all user-to-server requests with the authenticated user. For OAuth Apps and GitHub Apps, this is the user who authorized the app. All user-to-server requests count toward the authenticated user's rate limit.
|
||||
{% data variables.product.product_name %} associates all of these requests with the authenticated user. For {% data variables.product.prodname_oauth_apps %} and {% data variables.product.prodname_github_apps %}, this is the user who authorized the app. All of these requests count toward the authenticated user's rate limit.
|
||||
|
||||
{% data reusables.apps.user-to-server-rate-limits %}
|
||||
|
||||
{% ifversion fpt or ghec %}
|
||||
|
||||
{% data reusables.apps.user-to-server-rate-limits-ghec %}
|
||||
User access token requests are subject to a higher limit of 15,000 requests per hour and per authenticated user in the following scenarios:
|
||||
|
||||
- The request is from a {% data variables.product.prodname_github_app %} that is owned by a {% data variables.product.prodname_ghe_cloud %} organization.
|
||||
- The request is from an {% data variables.product.prodname_oauth_app %} that is owned or approved by a {% data variables.product.prodname_ghe_cloud %} organization.
|
||||
|
||||
{% ifversion fpt or ghec or ghes %}
|
||||
|
||||
@@ -349,7 +352,7 @@ For unauthenticated requests, the rate limit allows for up to 60 requests per ho
|
||||
|
||||
#### Rate limits for requests from {% data variables.product.prodname_github_apps %}
|
||||
|
||||
Requests from a GitHub App may be either user-to-server or server-to-server requests. For more information about rate limits for GitHub Apps, see "[AUTOTITLE](/apps/creating-github-apps/creating-github-apps/rate-limits-for-github-apps)."
|
||||
Requests from a {% data variables.product.prodname_github_app %} may either use a user access token or an installation access token. For more information about rate limits for {% data variables.product.prodname_github_apps %}, see "[AUTOTITLE](/apps/creating-github-apps/creating-github-apps/rate-limits-for-github-apps)."
|
||||
|
||||
#### Rate limits for requests from {% data variables.product.prodname_actions %}
|
||||
|
||||
@@ -406,9 +409,9 @@ If you exceed the rate limit, the response will have a `403` status and the `x-r
|
||||
If you are rate limited, you should not try your request until after the time specified by the `x-ratelimit-reset` time.
|
||||
|
||||
|
||||
### Increasing the unauthenticated rate limit for OAuth Apps
|
||||
### Increasing the unauthenticated rate limit for {% data variables.product.prodname_oauth_apps %}
|
||||
|
||||
If your OAuth App needs to make unauthenticated calls with a higher rate limit, you can pass your app's client ID and secret before the endpoint route.
|
||||
If your {% data variables.product.prodname_oauth_app %} needs to make unauthenticated calls with a higher rate limit, you can pass your app's client ID and secret before the endpoint route.
|
||||
|
||||
```shell
|
||||
$ curl -u my_client_id:my_client_secret -I {% data variables.product.api_url_pre %}/user/repos
|
||||
@@ -422,7 +425,7 @@ $ curl -u my_client_id:my_client_secret -I {% data variables.product.api_url_pre
|
||||
|
||||
{% note %}
|
||||
|
||||
**Note:** Never share your client secret with anyone or include it in client-side browser code. Use the method shown here only for server-to-server calls.
|
||||
**Note:** Never share your client secret with anyone or include it in client-side browser code.
|
||||
|
||||
{% endnote %}
|
||||
|
||||
|
||||
@@ -16,8 +16,6 @@ As you consider where to find open source contributors to sponsor, consider star
|
||||
|
||||
If you're logged in, the sponsors results will start with public dependencies that your repositories depend on.
|
||||
|
||||

|
||||
|
||||
You can also toggle which of your accounts to view results for and further filter or search.
|
||||
|
||||

|
||||
|
||||
@@ -22,7 +22,7 @@ For sponsored developer accounts, the update will come from your personal accoun
|
||||
## Contacting your sponsors
|
||||
|
||||
{% data reusables.sponsors.navigate-to-sponsors-dashboard %}
|
||||
{% data reusables.sponsors.sponsors-updates-tab %}
|
||||
1. In the "Manage" section of the sidebar, click **Newsletters**.
|
||||
{% data reusables.sponsors.draft-new-update %}
|
||||
{% data reusables.sponsors.send-update-to-sponsors %}
|
||||
{% data reusables.sponsors.write-sponsor-update %}
|
||||
|
||||
@@ -21,7 +21,5 @@ Alternatively, you can unpublish your sponsors profile and then republish the ac
|
||||
|
||||
{% data reusables.sponsors.navigate-to-sponsors-dashboard %}
|
||||
{% data reusables.sponsors.settings-tab %}
|
||||
1. Under "Disable GitHub Sponsors account", click **Disable account**.
|
||||

|
||||
2. To confirm, click **Disable GitHub Sponsors account**.
|
||||

|
||||
1. In the "Disable {% data variables.product.prodname_sponsors %} account" section, click **Disable account**.
|
||||
1. To confirm, click **Disable {% data variables.product.prodname_sponsors %} account**.
|
||||
|
||||
@@ -28,17 +28,12 @@ shortTitle: Manage payment tiers
|
||||
1. If you are setting up tiers for the first time, we recommend you review the suggested tier examples to see how some other open source contributors have set up {% data variables.product.prodname_sponsors %}. Decide whether you want to start with some suggested draft tiers, which you can customize in the tier editor.
|
||||
- To use a suggested tier, select the rewards you'd like to include in your draft tier or tiers. Then, click **Continue to tier editor**.
|
||||
- To create tiers without using with any of the draft suggestions, click **Skip this step**.
|
||||
|
||||
|
||||

|
||||
|
||||
1. Optionally, in the text boxes under "Custom amounts", type a recommended or minimum sponsorship amount. The minimum amount applies to both recurring and one-time sponsorships.
|
||||
|
||||

|
||||
|
||||
1. Optionally, in the text boxes in the "Custom amounts" section, type a recommended or minimum sponsorship amount. The minimum amount applies to both recurring and one-time sponsorships.
|
||||
1. Optionally, to edit a draft tier, find the draft tier and click **Edit**.
|
||||
|
||||

|
||||
|
||||
{% data reusables.sponsors.click-add-tier %}
|
||||
{% data reusables.sponsors.tier-price-description %}
|
||||
{% data reusables.sponsors.add-welcome-message %}
|
||||
@@ -67,11 +62,11 @@ shortTitle: Manage payment tiers
|
||||
|
||||
To add a repository to a tier, the repository must be private and owned by an organization, and you must have admin access to the repository.
|
||||
|
||||
When you add a repository to a tier, {% data variables.product.company_short %} will automatically send repository invitations to new sponsors and remove access when a sponsorship is canceled.
|
||||
When you add a repository to a tier, {% data variables.product.company_short %} will automatically send repository invitations to new sponsors and remove access when a sponsorship is canceled.
|
||||
|
||||
Only personal accounts, not organizations, can be invited to private repositories associated with a sponsorship tier.
|
||||
|
||||
You can also manually add or remove collaborators to the repository, and {% data variables.product.company_short %} will not override these in the sync.
|
||||
You can also manually add or remove collaborators to the repository, and {% data variables.product.company_short %} will not override these in the sync.
|
||||
|
||||
### About transfers for repositories that are added to sponsorship tiers
|
||||
|
||||
@@ -87,11 +82,8 @@ If you transfer a repository that has been added to a sponsorship tier, sponsors
|
||||
{% data reusables.sponsors.navigate-to-sponsor-tiers-tab %}
|
||||
{% data reusables.sponsors.edit-tier %}
|
||||
1. Select **Grant sponsors access to a private repository**.
|
||||
1. Select the dropdown menu that appears and click the repository you want to add.
|
||||
|
||||

|
||||
|
||||
1. Select the dropdown menu and click the repository you want to add.
|
||||
|
||||

|
||||

|
||||
|
||||
{% data reusables.sponsors.tier-update %}
|
||||
|
||||
@@ -27,11 +27,9 @@ To join {% data variables.product.prodname_sponsors %} as an individual contribu
|
||||
|
||||
{% data reusables.sponsors.navigate-to-github-sponsors %}
|
||||
{% data reusables.sponsors.view-eligible-accounts %}
|
||||
3. To the right of your organization, click **Join the waitlist**.
|
||||
1. To the right of your organization, click **Join the waitlist**.
|
||||
{% data reusables.sponsors.contact-info %}
|
||||
{% data reusables.sponsors.payout-choice %}
|
||||

|
||||
|
||||
{% data reusables.sponsors.accept-legal-terms %}
|
||||
|
||||
## Completing your sponsored organization profile
|
||||
|
||||
@@ -23,9 +23,8 @@ shortTitle: Set up for personal account
|
||||
To join {% data variables.product.prodname_sponsors %} as an organization, see "[AUTOTITLE](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-organization)."
|
||||
|
||||
{% data reusables.sponsors.navigate-to-github-sponsors %}
|
||||
2. If you are an organization owner, you have more than one eligible account. Click **Get sponsored**, then in the list of accounts, find your personal account.
|
||||

|
||||
3. Click **Join the waitlist**.
|
||||
1. If you are an organization owner, you have more than one eligible account. Click **Get sponsored**, then in the list of accounts, find your personal account.
|
||||
1. Click **Join the waitlist**.
|
||||
{% data reusables.sponsors.contact-info %}
|
||||
{% data reusables.sponsors.payout-choice %}
|
||||

|
||||
@@ -90,6 +89,5 @@ Before you can become a sponsored developer, you must enable 2FA for your accoun
|
||||
|
||||
{% data reusables.sponsors.navigate-to-sponsors-dashboard %}
|
||||
4. Click **Request approval**.
|
||||

|
||||
|
||||
{% data reusables.sponsors.github-review-app %}
|
||||
|
||||
@@ -33,6 +33,9 @@ Once you navigate to the "Join the waitlist" profile setup page for the account
|
||||
|
||||

|
||||
2. Use the **Select a fiscal host** dropdown to choose the fiscal host you want to use.
|
||||
|
||||

|
||||
|
||||
3. In the text box under "Fiscal host project profile URL", type the URL to your profile page on the fiscal host's site. This helps us verify that you are indeed registered with the fiscal host.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
@@ -16,11 +16,10 @@ shortTitle: Attribute sponsorships
|
||||
---
|
||||
|
||||
1. Navigate to the organization whose sponsorships you want to attribute to another organization.
|
||||
2. Under your organization name, click {% octicon "heart" aria-label="The heart icon" %} **Sponsoring**.
|
||||
1. Under your organization name, click {% octicon "heart" aria-label="The heart icon" %} **Sponsoring**.
|
||||

|
||||
1. In the upper-right corner, click {% octicon "gear" aria-label="The gear icon" %} **Settings**.
|
||||

|
||||
1. Under "Link sponsorships to another account", use the drop-down menu, then click the organization you want this organization's sponsorships to be attributed to.
|
||||

|
||||
1. In the "Link sponsorships to another account" section, select the dropdown menu, then click the organization you want your organization's sponsorships to be attributed to.
|
||||
1. Click **Link account**.
|
||||

|
||||
|
||||
@@ -19,7 +19,4 @@ Companies can use an invoice method to participate in the {% data variables.prod
|
||||
|
||||
Companies paying by invoice will be invoiced separately for their {% data variables.product.prodname_sponsors %} payments and their other payments to GitHub. Payments to {% data variables.product.prodname_sponsors %} are invoiced through Stripe.
|
||||
|
||||

|
||||
|
||||
You can join this beta program by talking to your sales representative, or by [contacting us](https://support.github.com/contact/org-sponsors-waitlist).
|
||||
|
||||
|
||||
@@ -82,7 +82,6 @@ Before you can sponsor an account, you must have a verified email address. For m
|
||||
{% data reusables.sponsors.select-a-tier %}
|
||||
{% data reusables.sponsors.pay-prorated-amount %}
|
||||
{% data reusables.sponsors.select-sponsorship-billing %}
|
||||

|
||||
{% data reusables.sponsors.who-can-see-your-sponsorship %}
|
||||

|
||||
{% data reusables.sponsors.choose-updates %}
|
||||
|
||||
@@ -19,7 +19,7 @@ You can also query our search endpoint directly at:
|
||||
`https://docs.github.com/search?version=<VERSION>&language=<LANGUAGE CODE>&filters=topics:<TOPIC>&query=<QUERY>`
|
||||
|
||||
- The VERSION can be any numbered GitHub Enterprise Server version (e.g., `2.22`, `3.0`), GitHub AE (`ghae`), or the Free pro team plan (`dotcom`).
|
||||
- The LANGUAGE CODE can be: `zh`, `de`, `en`, `es`, `ja`, or `pt`.
|
||||
- The LANGUAGE CODE can be one of: `zh`, `es`, `pt`, `ru`, `ja`, `fr`, `de`, `ko`
|
||||
- TOPIC can be any topics in [the allowed list of topics](/data/allowed-topics.js). The values in the `topics` attribute are **not** case sensitive, so filtering on `GitHub actions` or `github actions` will return the same result. **Note:** Currently, the topics filter only works for the dotcom version in the English language. We plan to expand this search query to other languages and versions in the future.
|
||||
- Any search QUERY you'd like.
|
||||
|
||||
@@ -94,18 +94,15 @@ There's a separate search index for each combination of product and language. So
|
||||
|
||||
Index Name | Description
|
||||
---------- | -----------
|
||||
`github-docs-dotcom-zh` | GitHub.com Chinese
|
||||
`github-docs-dotcom-en` | GitHub.com English
|
||||
`github-docs-dotcom-zh` | GitHub.com Chinese
|
||||
`github-docs-dotcom-es` | GitHub.com Spanish
|
||||
`github-docs-dotcom-ja` | GitHub.com Japanese
|
||||
`github-docs-2.18-zh` | GitHub Enterprise 2.18 Chinese
|
||||
`github-docs-2.18-en` | GitHub Enterprise 2.18 English
|
||||
`github-docs-2.18-zh` | GitHub Enterprise 2.18 Chinese
|
||||
`github-docs-2.18-es` | GitHub Enterprise 2.18 Spanish
|
||||
`github-docs-2.18-ja` | GitHub Enterprise 2.18 Japanese
|
||||
`github-docs-2.17-zh` | GitHub Enterprise 2.17 Chinese
|
||||
`github-docs-2.17-en` | GitHub Enterprise 2.17 English
|
||||
`github-docs-2.17-zh` | GitHub Enterprise 2.17 Chinese
|
||||
`github-docs-2.17-es` | GitHub Enterprise 2.17 Spanish
|
||||
`github-docs-2.17-ja` | GitHub Enterprise 2.17 Japanese
|
||||
|
||||
## Records
|
||||
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
User-to-server requests are subject to a higher limit of 15,000 requests per hour and per authenticated user in the following scenarios.
|
||||
|
||||
- The request is from a {% data variables.product.prodname_github_app %} that's owned by a {% data variables.product.prodname_ghe_cloud %} organization.
|
||||
- The request is from an {% data variables.product.prodname_oauth_app %} that's owned or approved by a {% data variables.product.prodname_ghe_cloud %} organization.
|
||||
@@ -1 +1 @@
|
||||
{% ifversion ghes %}By default, user-to-server{% else %}User-to-server{% endif %} requests are limited to {% ifversion ghae %}15,000{% elsif fpt or ghec or ghes %}5,000{% endif %} requests per hour and per authenticated user. All requests from OAuth applications authorized by a user or a {% data variables.product.pat_generic %} owned by the user, and requests authenticated with any of the user's authentication credentials, share the same quota of {% ifversion ghae %}15,000{% elsif fpt or ghec or ghes %}5,000{% endif %} requests per hour for that user.
|
||||
{% ifversion ghes %}By default, user access token{% else %}User access token{% endif %} requests are limited to {% ifversion ghae %}15,000{% elsif fpt or ghec or ghes %}5,000{% endif %} requests per hour and per authenticated user. All requests from OAuth applications authorized by a user or a {% data variables.product.pat_generic %} owned by the user, and requests authenticated with any of the user's authentication credentials, share the same quota of {% ifversion ghae %}15,000{% elsif fpt or ghec or ghes %}5,000{% endif %} requests per hour for that user.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
{% note %}
|
||||
|
||||
**Note**: Rate limits are disabled by default for {% data variables.product.product_name %}. Contact your site administrator to confirm the rate limits for your instance.
|
||||
Rate limits are disabled by default for {% data variables.product.product_name %}. Contact your site administrator to confirm the rate limits for your instance.
|
||||
|
||||
{% endnote %}
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
1. In the list of packages, find the version of the package that you want to delete.
|
||||
* If your package is a container, to the right of the package version click {% octicon "kebab-horizontal" aria-hidden="true" %}, then select **Delete version** from the dropdown menu.
|
||||
* _If your package is a container_, to the right of the package version click {% octicon "kebab-horizontal" aria-hidden="true" %}, then select **Delete version** from the dropdown menu.
|
||||

|
||||
* For types of packages other than containers, to the right of the package version click **Delete**.
|
||||
* _For types of packages other than containers_, to the right of the package version click **Delete**.
|
||||

|
||||
@@ -3,9 +3,9 @@
|
||||

|
||||
{% elsif ghes %}
|
||||
1. Navigate to where you can manage versions for your type of package.
|
||||
* **If your package is a container**, under the "Recent Versions" section, click **View and manage all versions**.
|
||||
* _If your package is a container_, under the "Recent Versions" section, click **View and manage all versions**.
|
||||

|
||||
* **For types of packages other than containers**:
|
||||
* _For types of packages other than containers_:
|
||||
1. On the right-hand side, click **{% octicon "gear" aria-hidden="true" %} Package settings**.
|
||||

|
||||
1. On the left click **Manage versions**.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{% note %}
|
||||
|
||||
**Note**: You can confirm your current rate limit status at any time. For more information, see "[AUTOTITLE](/rest/overview/resources-in-the-rest-api#checking-your-rate-limit-status)."
|
||||
You can confirm your current rate limit status at any time using the REST API. For more information, see "[AUTOTITLE](/rest/overview/resources-in-the-rest-api#checking-your-rate-limit-status)."
|
||||
|
||||
{% endnote %}
|
||||
|
||||
1
data/reusables/shortdesc/rate_limits_apps.md
Normal file
@@ -0,0 +1 @@
|
||||
Rate limits restrict the rate of traffic to {% data variables.location.product_location %}, to help ensure consistent access for all users.
|
||||
@@ -1 +0,0 @@
|
||||
Rate limits for {% data variables.product.prodname_github_apps %} and {% data variables.product.prodname_oauth_apps %} help control the rate of traffic to {% data variables.location.product_location %}.
|
||||
@@ -1,2 +1 @@
|
||||
1. Under "Introduction", type a description of the work you'll do with your sponsorships.
|
||||

|
||||
1. In the "Introduction" section, type a description of the work you'll do with your sponsorships.
|
||||
|
||||
@@ -1,2 +1 @@
|
||||
1. Click **Add webhook**.
|
||||

|
||||
|
||||
@@ -1,2 +1 @@
|
||||
1. Optionally, type a welcome message for the tier.
|
||||

|
||||
1. Optionally, to add a welcome message for the tier, select **Display welcome message**, then type your message in the text field that appears.
|
||||
|
||||
@@ -1,2 +1 @@
|
||||
1. Optionally, to manage your sponsorship on behalf of an organization, in the upper-left corner, use the **Personal settings** drop-down menu, and click the organization.
|
||||

|
||||
1. Optionally, to manage your sponsorship on behalf of an organization, in the upper-left corner, select the **Switch to another account** dropdown menu, then click the organization.
|
||||
|
||||
@@ -1,2 +1 @@
|
||||
1. To create a monthly tier, click **Add a monthly tier** at the right of the page. Alternatively, to create a tier for one-time payments, click **One-time tiers** and then click **Add a one-time tier**.
|
||||

|
||||
|
||||
@@ -1,2 +1 @@
|
||||
1. Click **Create webhook**.
|
||||

|
||||
|
||||
@@ -1,3 +1,2 @@
|
||||
1. Click **Stripe Connect account**.
|
||||

|
||||
2. Follow the prompts to create your account.
|
||||
1. Follow the prompts to create your account.
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
1. Optionally, choose the repositories that are showcased on your {% data variables.product.prodname_sponsors %} profile.
|
||||
- To the right of "Featured work", click **Edit**.
|
||||

|
||||
- Select up to 6 repositories, then click **Save**.
|
||||

|
||||
- In the "Featured work" section, to the right of the section title, click **Edit**.
|
||||
- In the modal that appears, select up to six repositories, then click **Save**.
|
||||
|
||||
@@ -1,2 +1 @@
|
||||
1. To the right of your goal, click **Edit**.
|
||||

|
||||
|
||||
@@ -1,2 +1 @@
|
||||
1. To the right of the tier you want to edit, click **Edit**.
|
||||

|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
1. When you have at least one tier, you'll see an option to enable custom amounts above the monthly and one-time tiers. If you want to allow sponsors to set their payment amount, then select **Enable custom amounts**.
|
||||

|
||||
1. Optionally, if you enable custom amounts you can set a default amount to display for the custom tiers. Specify a whole dollar amount and click **Set default amount**.
|
||||

|
||||
@@ -1,2 +1 @@
|
||||
1. To the right of your current tier, click **Manage**.
|
||||

|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
1. Optionally, choose the organization members that are highlighted on your {% data variables.product.prodname_sponsors %} profile.
|
||||
- To the right of "Meet the team", click **Edit**.
|
||||

|
||||
- In the "Meet the team" section, to the right of the section title, click **Edit**.
|
||||
- Select up to six organization members, then click **Save**.
|
||||

|
||||
- Optionally, under each highlighted member's name, type a description of the member.
|
||||

|
||||
|
||||
@@ -1,2 +1 @@
|
||||
1. On the left sidebar, click **Payouts**.
|
||||

|
||||
|
||||
@@ -1,2 +1 @@
|
||||
1. On the left sidebar, click **Profile details**.
|
||||

|
||||
1. In the "Profile" section in the left sidebar, click **Profile details**.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1. In the upper-right corner of any page, click your profile photo, then click **Your sponsors**.
|
||||

|
||||
2. If a list of your sponsored and eligible accounts is shown, to the right of the account you want to manage, click **Dashboard**.
|
||||

|
||||
|
||||

|
||||
1. If a list of your sponsored and eligible accounts is shown, to the right of the account you want to manage, click **Dashboard**.
|
||||
|
||||
@@ -1,2 +1 @@
|
||||
1. Optionally, select **Opt-in to potentially being featured on github.com/sponsors**.
|
||||

|
||||
1. Optionally, select **Optional: Opt-in to get featured on github.com/sponsors**.
|
||||
|
||||