Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,14 @@ redirect_from:
- /admin/github-actions/enabling-github-actions-with-minio-gateway-for-nas-storage
shortTitle: MinIO Gateway for NAS storage
---
## Prerequisites

{% data reusables.actions.enterprise-s3-support-warning %}
{% warning %}

**Warning**: MinIO has announced removal of MinIO Gateways. Starting June 1st, 2022, support and bug fixes for the current MinIO NAS Gateway implementation will only be available for paid customers via their LTS support contract. If you want to continue using MinIO Gateways with {% data variables.product.prodname_actions %}, we recommend moving to MinIO LTS support. For more information, see [Scheduled removal of MinIO Gateway for GCS, Azure, HDFS](https://github.com/minio/minio/issues/14331) in the minio/minio repository.

{% endwarning %}

## Prerequisites

Before enabling {% data variables.product.prodname_actions %}, make sure you have completed the following steps:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Each action is a repository in the `actions` organization, and each action repos

**Notes:**
- When using setup actions (such as `actions/setup-LANGUAGE`) on {% data variables.product.product_name %} with self-hosted runners, you might need to set up the tools cache on runners that do not have internet access. For more information, see "[Setting up the tool cache on self-hosted runners without internet access](/enterprise/admin/github-actions/setting-up-the-tool-cache-on-self-hosted-runners-without-internet-access)."
- Upgrades to {% data variables.product.product_name %} will not result in the bundled actions being updated.
- Bundled actions are automatically updated when {% data variables.product.product_name %} is updated.

{% endnote %}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ Name | Description
 `user:follow`| Grants access to follow or unfollow other users.
**`delete_repo`** | Grants access to delete adminable repositories.
**`write:discussion`** | Allows read and write access for team discussions.
 `read:discussion` | Allows read access for team discussions.{% ifversion fpt or ghae or ghec %}
 `read:discussion` | Allows read access for team discussions.
**`write:packages`** | Grants access to upload or publish a package in {% data variables.product.prodname_registry %}. For more information, see "[Publishing a package](/github/managing-packages-with-github-packages/publishing-a-package)".
**`read:packages`** | Grants access to download or install packages from {% data variables.product.prodname_registry %}. For more information, see "[Installing a package](/github/managing-packages-with-github-packages/installing-a-package)".
**`read:packages`** | Grants access to download or install packages from {% data variables.product.prodname_registry %}. For more information, see "[Installing a package](/github/managing-packages-with-github-packages/installing-a-package)".{% ifversion fpt or ghec or ghes > 3.1 or ghae %}
**`delete:packages`** | Grants access to delete packages from {% data variables.product.prodname_registry %}. For more information, see "[Deleting and restoring a package](/packages/learn-github-packages/deleting-and-restoring-a-package)."{% endif %}
**`admin:gpg_key`** | Fully manage GPG keys.
 `write:gpg_key`| Create, list, and view details for GPG keys.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -810,8 +810,6 @@ Key | Type | Description

{% endif %}

{% ifversion fpt or ghae or ghec %}

## package

Activity related to {% data variables.product.prodname_registry %}. {% data reusables.webhooks.action_type_desc %} For more information, see "[Managing packages with {% data variables.product.prodname_registry %}](/github/managing-packages-with-github-packages)" to learn more about {% data variables.product.prodname_registry %}.
Expand All @@ -831,7 +829,6 @@ Activity related to {% data variables.product.prodname_registry %}. {% data reus
### Webhook payload example

{{ webhookPayloadsForCurrentVersion.package.published }}
{% endif %}

## page_build

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ shortTitle: Introduction

## About {% data variables.product.prodname_registry %}

{% data variables.product.prodname_registry %} is a platform for hosting and managing packages, including containers and other dependencies. {% data variables.product.prodname_registry %} combines your source code and packages in one place to provide integrated permissions management{% ifversion not ghae %} and billing{% endif %}, so you can centralize your software development on {% data variables.product.product_name %}.
{% data variables.product.prodname_registry %} is a platform for hosting and managing packages, including containers and other dependencies. {% data variables.product.prodname_registry %} combines your source code and packages in one place to provide integrated permissions management{% ifversion fpt or ghec %} and billing{% endif %}, so you can centralize your software development on {% data variables.product.product_name %}.

You can integrate {% data variables.product.prodname_registry %} with {% ifversion fpt or ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} APIs, {% data variables.product.prodname_actions %}, and webhooks to create an end-to-end DevOps workflow that includes your code, CI, and deployment solutions.

Expand Down
6 changes: 3 additions & 3 deletions content/packages/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ In this guide, you'll create a {% data variables.product.prodname_actions %} wor
1. Create a new repository on {% data variables.product.prodname_dotcom %}, adding the `.gitignore` for Node. For more information, see "[Creating a new repository](/github/creating-cloning-and-archiving-repositories/creating-a-new-repository)."
2. Clone the repository to your local machine.
```shell
$ git clone https://{% ifversion ghae %}<em>YOUR-HOSTNAME</em>{% else %}github.com{% endif %}/<em>YOUR-USERNAME</em>/<em>YOUR-REPOSITORY</em>.git
$ git clone https://{% ifversion ghes or ghae %}<em>YOUR-HOSTNAME</em>{% else %}github.com{% endif %}/<em>YOUR-USERNAME</em>/<em>YOUR-REPOSITORY</em>.git
$ cd <em>YOUR-REPOSITORY</em>
```
3. Create an `index.js` file and add a basic alert to say "Hello world!"
Expand Down Expand Up @@ -49,7 +49,7 @@ In this guide, you'll create a {% data variables.product.prodname_actions %} wor
$ git push
```
6. Create a `.github/workflows` directory. In that directory, create a file named `release-package.yml`.
7. Copy the following YAML content into the `release-package.yml` file{% ifversion ghae %}, replacing `YOUR-HOSTNAME` with the name of your enterprise{% endif %}.
7. Copy the following YAML content into the `release-package.yml` file{% ifversion ghes or ghae %}, replacing `YOUR-HOSTNAME` with the name of your enterprise{% endif %}.
```yaml{:copy}
name: Node.js Package

Expand Down Expand Up @@ -79,7 +79,7 @@ In this guide, you'll create a {% data variables.product.prodname_actions %} wor
- uses: {% data reusables.actions.action-setup-node %}
with:
node-version: 12
registry-url: {% ifversion ghae %}https://npm.YOUR-HOSTNAME.com/{% else %}https://npm.pkg.github.com/{% endif %}
registry-url: {% ifversion ghes or ghae %}https://npm.YOUR-HOSTNAME.com/{% else %}https://npm.pkg.github.com/{% endif %}
- run: npm ci
- run: npm publish
env:
Expand Down
1 change: 1 addition & 0 deletions translations/log/pt-resets.csv
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ translations/pt-BR/content/admin/configuration/configuring-github-connect/managi
translations/pt-BR/content/admin/configuration/configuring-your-enterprise/configuring-rate-limits.md,broken liquid tags
translations/pt-BR/content/admin/configuration/configuring-your-enterprise/site-admin-dashboard.md,broken liquid tags
translations/pt-BR/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/increasing-cpu-or-memory-resources.md,broken liquid tags
translations/pt-BR/content/admin/identity-and-access-management/using-saml-for-enterprise-iam/updating-a-users-saml-nameid.md,broken liquid tags
translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/creating-teams.md,broken liquid tags
translations/pt-BR/content/admin/user-management/managing-repositories-in-your-enterprise/configuring-git-large-file-storage-for-your-enterprise.md,broken liquid tags
translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/promoting-or-demoting-a-site-administrator.md,broken liquid tags
Expand Down
Original file line number Diff line number Diff line change
@@ -1,63 +1,63 @@
---
title: Setting your profile to private
intro: 'A private profile displays only limited information, and hides some activity.'
title: Definindo seu perfil como privado
intro: Um perfil privado exibe apenas informações limitadas e oculta algumas atividades.
versions:
fpt: '*'
topics:
- Profiles
shortTitle: Set profile to private
shortTitle: Definir perfil como privado
---

## About private profiles
## Sobre os perfis privados

{% note %}

**Note:** Private profiles are currently in beta and are subject to change.
**Observação:** Os perfis privados estão atualmente em beta e estão sujeitos a alterações.

{% endnote %}

To hide parts of your profile page, you can make your profile private. This also hides your activity in various social features on {% data variables.product.prodname_dotcom_the_website %}. A private profile hides information from all users, and there is currently no option to allow specified users to see your activity.
Para ocultar partes da sua página de perfil, você pode tornar seu perfil privado. Isso também oculta sua atividade em várias funcionalidades sociais em {% data variables.product.prodname_dotcom_the_website %}. Um perfil privado oculta informações de todos os usuários, e atualmente não há opção para permitir que usuários especificados vejam sua atividade.

After making your profile private, you can still view all your information when you visit your own profile.
Depois de tornar seu perfil privado, você ainda pode ver todas as suas informações quando visitar seu próprio perfil.

Private profiles cannot receive sponsorships under [{% data variables.product.prodname_sponsors %}](/sponsors/getting-started-with-github-sponsors/about-github-sponsors). To be eligible for {% data variables.product.prodname_sponsors %}, your profile cannot be private.
Perfis privados não podem receber patrocínios abaixo de [{% data variables.product.prodname_sponsors %}](/sponsors/getting-started-with-github-sponsors/about-github-sponsors). Para ser elegível a {% data variables.product.prodname_sponsors %}, seu perfil não pode ser privado.

## Differences between private and public profiles
## Diferenças entre perfis públicos e privados

When your profile is private, the following content is hidden from your profile page:
Quando seu perfil é privado, o seguinte conteúdo fica oculto na sua página de perfil:

- Achievements and highlights.
- Activity overview and activity feed.
- Contribution graph.
- Follower and following counts.
- Follow and Sponsor buttons.
- Organization memberships.
- Stars, projects, packages, and sponsoring tabs.
- Conquistas e destaques.
- Resumo da atividade e feed da atividade.
- Gráfico de contribuição.
- Seguidor e contas seguidoras.
- Botões de seguir e Sponsor.
- Associações à organização.
- Estrelas, projetos, pacotes e guias de patrocínio.

{% note %}

**Note**: When your profile is private, some optional fields are still publicly visible, such as the README, biography, and profile photo.
**Observação**: Quando seu perfil é privado, alguns campos opcionais ainda são publicamente visíveis, como README, biografia e foto de perfil.

{% endnote %}

## Changes to reporting on your activities
## Alterações no relatório sobre as suas atividades

By making your profile private, you will not remove or hide past activity; this setting only applies to your activity while the private setting is enabled.
Ao tornar seu perfil privado, você não removerá ou ocultará as atividades anteriores; esta configuração se aplica somente à sua atividade enquanto a configuração privada estiver habilitada.

When your profile is private, your {% data variables.product.prodname_dotcom_the_website %} activity will not appear in the following locations:
Quando o seu perfil é privado, a atividade de {% data variables.product.prodname_dotcom_the_website %} não aparecerá nos seguintes locais:

- Activity feeds for other users.
- Discussions leaderboards.
- The [Trending](https://github.com/trending) page.
- Feeds de atividade para outros usuários.
- Classificações das discussões.
- A página [Tendências](https://github.com/trending).

{% note %}

**Note**: Your activity on public repositories will still be publicly visible to anyone viewing those repositories, and some activity data may still be available through the {% data variables.product.prodname_dotcom %} API.
**Observação**: Sua atividade em repositórios públicos ainda será visível publicamente para qualquer pessoa que visualizar esses repositórios, e alguns dados da atividade podem estar disponíveis por meio da API de {% data variables.product.prodname_dotcom %}.

{% endnote %}

## Changing your profile's privacy settings
## Alterando as configurações de privacidade do seu perfil

{% data reusables.user-settings.access_settings %}
1. Under "Contributions & Activity", select the checkbox next to **Make profile private and hide activity**.
1. Em "Contribuições & Atividade", marque a caixa de seleção ao lado de **Tornar perfil privado e ocultar a atividade**.
{% data reusables.user-settings.update-preferences %}
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Para usar a sintaxe de propriedade de desreferência, o nome da propriedade deve
- começar com `a-Z` ou `_`;
- ser seguido por `a-Z` `0-9` `-` ou `_`.

If you attempt to dereference a non-existent property, it will evaluate to an empty string.
Se você tentar desfazer uma propriedade inexistente, isso irá retornar uma string vazia.

### Determinar quando usar contextos

Expand Down
Loading