New translation batch for pt (#25756)
* Add crowdin translations * Run script/i18n/homogenize-frontmatter.js * Run script/i18n/fix-translation-errors.js * Run script/i18n/lint-translation-files.js --check parsing * run script/i18n/reset-files-with-broken-liquid-tags.js --language=pt * run script/i18n/reset-known-broken-translation-files.js Co-authored-by: Peter Bengtsson <mail@peterbe.com>
This commit is contained in:
@@ -113,7 +113,7 @@ Você pode definir entradas e segredos, que podem ser passados do fluxo de traba
|
||||
runs-on: ubuntu-latest
|
||||
environment: production
|
||||
steps:
|
||||
- uses: ./.github/actions/my-action
|
||||
- uses: ./.github/workflows/my-action
|
||||
with:
|
||||
username: ${{ inputs.username }}
|
||||
token: ${{ secrets.envPAT }}
|
||||
@@ -154,7 +154,7 @@ jobs:
|
||||
name: Pass input and secrets to my-action
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: ./.github/actions/my-action
|
||||
- uses: ./.github/workflows/my-action
|
||||
with:
|
||||
username: ${{ inputs.username }}
|
||||
token: ${{ secrets.token }}
|
||||
|
||||
@@ -195,7 +195,11 @@ Se você quiser mais controle granular do que os eventos, tipos de atividade do
|
||||
|
||||
### Usando condicionais
|
||||
|
||||
Você pode usar condicionais para controlar ainda mais se os trabalhos ou etapas no seu fluxo de trabalho serão executados. Se você quiser, por exemplo, que o fluxo de trabalho seja executado quando uma etiqueta específica for adicionada a um problema, você poderá acionar o tipo de atividade do evento `issues labeled` e usar uma condicional para verificar qual etiqueta acionou o fluxo de trabalho. O fluxo de trabalho a seguir será executado quando qualquer etiqueta for adicionada a um problema no repositório do fluxo de trabalho, mas a o trabalho `run_if_label_matches` só será executado se a etiqueta tiver o nome de `bug`.
|
||||
Você pode usar condicionais para controlar ainda mais se os trabalhos ou etapas no seu fluxo de trabalho serão executados.
|
||||
|
||||
#### Example using a value in the event payload
|
||||
|
||||
Se você quiser, por exemplo, que o fluxo de trabalho seja executado quando uma etiqueta específica for adicionada a um problema, você poderá acionar o tipo de atividade do evento `issues labeled` e usar uma condicional para verificar qual etiqueta acionou o fluxo de trabalho. O fluxo de trabalho a seguir será executado quando qualquer etiqueta for adicionada a um problema no repositório do fluxo de trabalho, mas a o trabalho `run_if_label_matches` só será executado se a etiqueta tiver o nome de `bug`.
|
||||
|
||||
```yaml
|
||||
on:
|
||||
@@ -211,7 +215,34 @@ jobs:
|
||||
- run: echo 'The label was bug'
|
||||
```
|
||||
|
||||
Para obter mais informações, consulte "[Expressões](/actions/learn-github-actions/expressions)".
|
||||
#### Example using event type
|
||||
|
||||
For example, if you want to run different jobs or steps depending on what event triggered the workflow, you can use a conditional to check whether a specific event type exists in the event context. The following workflow will run whenever an issue or pull request is closed. If the workflow ran because an issue was closed, the `github.event` context will contain a value for `issue` but not for `pull_request`. Therefore, the `if_issue` step will run but the `if_pr` step will not run. Conversely, if the workflow ran because a pull request was closed, the `if_pr` step will run but the `if_issue` step will not run.
|
||||
|
||||
```yaml
|
||||
on:
|
||||
issues:
|
||||
types:
|
||||
- closed
|
||||
pull_request:
|
||||
types:
|
||||
- closed
|
||||
|
||||
jobs:
|
||||
state_event_type:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: if_issue
|
||||
if: github.event.issue
|
||||
run: |
|
||||
echo An issue was closed
|
||||
- name: if_pr
|
||||
if: github.event.pull_request
|
||||
run: |
|
||||
echo A pull request was closed
|
||||
```
|
||||
|
||||
For more information about what information is available in the event context, see "[Using event information](#using-event-information)." For more information about how to use conditionals, see "[Expressions](/actions/learn-github-actions/expressions)."
|
||||
|
||||
{% ifversion fpt or ghae or ghes > 3.1 or ghec %}
|
||||
|
||||
|
||||
@@ -50,7 +50,7 @@ Para obter mais informações sobre o gerenciamento de políticas para a conta c
|
||||
|
||||
{% ifversion ghes or ghae %}
|
||||
|
||||
Na sua conta corporativa em {% ifversion ghae %}{% data variables.product.product_name %}{% elsif ghes %}uma {% data variables.product.prodname_ghe_server %}vinstância{% endif %}, os administradores podem visualizar a associação da empresa e gerenciar o seguinte para a instância {% ifversion ghes %}{% data variables.product.prodname_ghe_server %}{% elsif ghae %}empresa em {% data variables.product.prodname_ghe_managed %}{% endif %}.
|
||||
From your enterprise account on {% ifversion ghae %}{% data variables.product.product_name %}{% elsif ghes %}a {% data variables.product.prodname_ghe_server %} instance{% endif %}, administrators can view{% if remove-enterprise-members %} and manage{% endif %} enterprise membership{% if enterprise-owner-join-org %}, manage their own membership in organizations owned by the enterprise,{% endif %} and manage the following for the {% ifversion ghes %}{% data variables.product.prodname_ghe_server %} instance{% elsif ghae %}enterprise on {% data variables.product.prodname_ghe_managed %}{% endif %}.
|
||||
|
||||
{% ifversion ghes %}
|
||||
- Uso da licença{% endif %}
|
||||
@@ -65,7 +65,7 @@ Na sua conta corporativa em {% ifversion ghae %}{% data variables.product.produc
|
||||
|
||||
{% endif %}
|
||||
|
||||
{% ifversion ghec or ghes %}Ao experimentar ou comprar {% data variables.product.prodname_enterprise %}, você também pode{% ifversion ghes %}{% endif %} criar uma conta corporativa para {% data variables.product.prodname_ghe_cloud %} em {% data variables.product.prodname_dotcom_the_website %}. Os administradores da conta corporativa em {% data variables.product.prodname_dotcom_the_website %} podem visualizar a associação e gerenciar os recursos a seguir para a conta corporativa{% ifversion ghes %} em {% data variables.product.prodname_dotcom_the_website %}{% endif %}.
|
||||
{% ifversion ghec or ghes %}Ao experimentar ou comprar {% data variables.product.prodname_enterprise %}, você também pode{% ifversion ghes %}{% endif %} criar uma conta corporativa para {% data variables.product.prodname_ghe_cloud %} em {% data variables.product.prodname_dotcom_the_website %}. Administrators for the enterprise account on {% data variables.product.prodname_dotcom_the_website %} can view {% if remove-enterprise-members %} and manage{% endif %} enterprise membership{% if enterprise-owner-join-org %}, manage their own membership in organizations owned by the enterprise,{% endif %} and manage the following for the enterprise account{% ifversion ghes %} on {% data variables.product.prodname_dotcom_the_website %}{% endif %}.
|
||||
|
||||
- Cobrança e uso (serviços em {% data variables.product.prodname_dotcom_the_website %}, {% data variables.product.prodname_GH_advanced_security %}, licenças de usuários)
|
||||
- Segurança (logon único, listas de permissão de IP, autoridades de certificação SSH, autenticação de dois fatores)
|
||||
|
||||
@@ -25,6 +25,7 @@ children:
|
||||
- /adding-people-to-teams
|
||||
- /viewing-the-audit-logs-for-organizations-in-your-enterprise
|
||||
- /streaming-the-audit-logs-for-organizations-in-your-enterprise-account
|
||||
- /managing-your-role-in-an-organization-owned-by-your-enterprise
|
||||
- /removing-users-from-teams-and-organizations
|
||||
- /removing-organizations-from-your-enterprise
|
||||
- /restoring-a-deleted-organization
|
||||
|
||||
@@ -0,0 +1,54 @@
|
||||
---
|
||||
title: Managing your role in an organization owned by your enterprise
|
||||
intro: You can manage your membership in any organization owned by your enterprise and change your role within the organization.
|
||||
permissions: Enterprise owners can manage their role in an organization owned by the enterprise.
|
||||
versions:
|
||||
feature: enterprise-owner-join-org
|
||||
type: how_to
|
||||
topics:
|
||||
- Administrator
|
||||
- Enterprise
|
||||
- Organizations
|
||||
shortTitle: Manage your organization roles
|
||||
---
|
||||
|
||||
{% note %}
|
||||
|
||||
**Note:** The ability for enterprise owners to manage their role in an organization owned by the enterprise is in beta and subject to change.
|
||||
|
||||
{% endnote %}
|
||||
|
||||
## About role management
|
||||
|
||||
You can choose to join an organization owned by your enterprise as a member or as an organization owner, change your role within the organization, or leave the organization.
|
||||
|
||||
{% warning %}
|
||||
|
||||
**Warning**: If an organization uses SCIM to provision users, joining the organization this way could have unintended consequences. Para obter mais informações, consulte "[Sobre o SCIM](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim)".
|
||||
|
||||
{% endwarning %}
|
||||
|
||||
## Managing your role with the enterprise settings
|
||||
|
||||
You can join an organization owned by your enterprise and manage your role within the organization, directly from the settings for your enterprise account.
|
||||
|
||||
If an organization enforces SAML single sign-on (SSO), you cannot use the enterprise settings to join the organization. Instead, you must join the organization using that organization's identity provider (IdP). Then, you can manage your role in your enterprise settings. For more information, see "[Joining an organization that enforces SAML SSO](#joining-an-organization-that-enforces-saml-sso)."
|
||||
|
||||
{% data reusables.enterprise-accounts.access-enterprise %}
|
||||
1. On the **Organizations** tab, to the right of the organization you want to manage your role in, select the {% octicon "gear" aria-label="The gear icon" %} dropdown menu and click the action you want to take.
|
||||
|
||||

|
||||
|
||||
## Joining an organization that enforces SAML SSO
|
||||
|
||||
If an organization enforces SAML SSO, you cannot use the enterprise settings to join the organization. Instead, you must join the organization using that organization's identity provider (IdP).
|
||||
|
||||
1. You must be assigned access in your IdP to the application for {% data variables.product.prodname_ghe_cloud %} that is used by the organization. If you're unable to configure your IdP yourself, contact your IdP administrator.
|
||||
1. Authenticate to the organization using SAML SSO.
|
||||
|
||||
- If the organization uses SCIM, accept the organization invitation that will be generated by the SCIM integration.
|
||||
- If the organization does not use SCIM, visit the following URL, replacing ORGANIZATION with the name of the organization, then follow the prompts to authenticate.
|
||||
|
||||
`https://github.com/orgs/ORGANIZATION/sso`
|
||||
|
||||
After you've joined the organization, you can use the enterprise settings to manage your role in the organization, such as becoming an organization owner. For more information, see "[Managing your role with the enterprise settings](#managing-your-role-with-the-enterprise-settings)."
|
||||
@@ -27,6 +27,7 @@ children:
|
||||
- /viewing-and-managing-a-users-saml-access-to-your-enterprise
|
||||
- /auditing-users-across-your-enterprise
|
||||
- /impersonating-a-user
|
||||
- /removing-a-member-from-your-enterprise
|
||||
- /managing-dormant-users
|
||||
- /suspending-and-unsuspending-users
|
||||
- /placing-a-legal-hold-on-a-user-or-organization
|
||||
|
||||
@@ -0,0 +1,39 @@
|
||||
---
|
||||
title: Removing a member from your enterprise
|
||||
intro: 'You can remove a member from all organizations owned by your enterprise.'
|
||||
permissions: Enterprise owners can remove an enterprise member from the enterprise.
|
||||
versions:
|
||||
feature: 'remove-enterprise-members'
|
||||
type: how_to
|
||||
topics:
|
||||
- Enterprise
|
||||
shortTitle: Remove member
|
||||
---
|
||||
|
||||
{% note %}
|
||||
|
||||
**Note:** The ability to remove enterprise members is in beta and subject to change.
|
||||
|
||||
{% endnote %}
|
||||
|
||||
## About removal of enterprise members
|
||||
|
||||
When you remove an enterprise member from your enterprise, the member is removed from all organizations owned by your enterprise.
|
||||
|
||||
If the enterprise member you're removing is the last owner of an organization owned by your enterprise, you will become an owner of that organization.
|
||||
|
||||
If your enterprise or any of the organizations owned by your enterprise uses an identity provider (IdP) to manage organization membership, the member may be added back to the organization by the IdP. Make sure to also make any necessary changes in your IdP.
|
||||
|
||||
## Removing a member from your enterprise
|
||||
|
||||
{% note %}
|
||||
|
||||
**Note:** If an enterprise member uses only {% data variables.product.prodname_ghe_server %}, and not {% data variables.product.prodname_ghe_cloud %}, you cannot remove the enterprise member this way.
|
||||
|
||||
{% endnote %}
|
||||
|
||||
{% data reusables.enterprise-accounts.access-enterprise %}
|
||||
{% data reusables.enterprise-accounts.people-tab %}
|
||||
1. To the right of the person you want to remove, select the {% octicon "gear" aria-label="The gear icon" %} dropdown menu and click **Remove from enterprise**.
|
||||
|
||||

|
||||
@@ -30,16 +30,23 @@ Para obter mais informações sobre como adicionar pessoas à sua empresa, consu
|
||||
|
||||
{% endif %}
|
||||
|
||||
## Proprietário corporativo
|
||||
## Enterprise owners
|
||||
|
||||
Os proprietários corporativos têm controle total da empresa e podem executar todas as ações, incluindo:
|
||||
- Gerenciar os administradores
|
||||
- {% ifversion ghec %}Adicionar e remover {% elsif ghae or ghes %}Managing{% endif %} organizações{% ifversion ghec %}para e de {% elsif ghae or ghes %} na{% endif %} empresa
|
||||
- {% ifversion ghec %}Adding and removing {% elsif ghae or ghes %}Managing{% endif %} organizations {% ifversion ghec %}to and from {% elsif ghae or ghes %} in{% endif %} the enterprise{% if remove-enterprise-members %}
|
||||
- Removing enterprise members from all organizations owned by the enterprise{% endif %}
|
||||
- Gerenciar as configurações da empresa
|
||||
- Aplicar a política nas organizações
|
||||
{% ifversion ghec %}- Managing billing settings{% endif %}
|
||||
|
||||
{% if enterprise-owner-join-org %}
|
||||
Enterprise owners do not have access to organization settings or content by default. To gain access, enterprise owners can join any organization owned by their enterprise. For more information, see "[Managing your role in an organization owned by your enterprise](/admin/user-management/managing-organizations-in-your-enterprise/managing-your-role-in-an-organization-owned-by-your-enterprise)."
|
||||
|
||||
Owners of organizations in your enterprise do not have access to the enterprise itself unless you make them enterprise owners.
|
||||
{% else %}
|
||||
Os proprietários corporativos não podem acessar as configurações ou o conteúdo da organização, a menos que sejam incluídos como proprietário da organização ou recebam acesso direto a um repositório de propriedade da organização. Da mesma forma, os proprietários de organizações na sua empresa não têm acesso à empresa propriamente dita, a não ser que você os torne proprietários da empresa.
|
||||
{% endif %}
|
||||
|
||||
Um proprietário da empresa só consumirá uma licença se for um proprietário ou integrante de pelo menos uma organização dentro da empresa. Mesmo que o proprietário de uma empresa tenha uma função em várias organizações, ele consumirá uma única licença. {% ifversion ghec %}Os proprietários de empresas devem ter uma conta pessoal em {% data variables.product.prodname_dotcom %}.{% endif %} Como prática recomendada, sugerimos que você converta apenas algumas pessoas da sua empresa em proprietários para reduzir o risco para a sua empresa.
|
||||
|
||||
@@ -55,7 +62,7 @@ Pessoas com acesso de colaborador externo aos repositórios pertencentes à sua
|
||||
|
||||
{% ifversion ghec %}
|
||||
|
||||
## Gerente de cobrança
|
||||
## Gerentes de cobrança
|
||||
|
||||
Os gerentes de cobrança só têm acesso às configurações de cobrança da sua empresa. Gerentes de cobrança para a sua empresa podem:
|
||||
- Visualizar e gerenciar licenças de usuário, pacotes do {% data variables.large_files.product_name_short %} e outras configurações de cobrança
|
||||
|
||||
@@ -55,6 +55,12 @@ Para maior segurança, além de alterar a senha, habilite também a autenticaç
|
||||
|
||||
Consulte "[Revisar integrações autorizadas](/articles/reviewing-your-authorized-integrations)" para ver instruções sobre como revisar e excluir tokens de acesso. Para gerar novos tokens de acesso, consulte "[Criar um token de acesso pessoal](/github/authenticating-to-github/creating-a-personal-access-token)."
|
||||
|
||||
{% ifversion not ghae %}
|
||||
|
||||
If you have reset your account password and would also like to trigger a sign-out from the GitHub Mobile app, you can revoke your authorization of the "GitHub iOS" or "GitHub Android" OAuth App. For additional information, see "[Reviewing your authorized integrations](/authentication/keeping-your-account-and-data-secure/reviewing-your-authorized-integrations)."
|
||||
|
||||
{% endif %}
|
||||
|
||||
## Atualizar chaves SSH
|
||||
|
||||
Consulte "[Revisar as chaves SSH](/articles/reviewing-your-ssh-keys)" para ver instruções sobre como revisar e excluir chaves SSH. Para gerar e adicionar novas chaves SSH, consulte "[Gerar uma chave SSH](/articles/generating-an-ssh-key)".
|
||||
|
||||
@@ -14,9 +14,9 @@ topics:
|
||||
- SSH
|
||||
shortTitle: Permission denied (publickey)
|
||||
---
|
||||
## Should the `sudo` command be used with Git?
|
||||
## Should the `sudo` command or elevated privileges be used with Git?
|
||||
|
||||
You should not be using the `sudo` command with Git. If you have a *very good reason* you must use `sudo`, then ensure you are using it with every command (it's probably just better to use `su` to get a shell as root at that point). If you [generate SSH keys](/articles/generating-an-ssh-key) without `sudo` and then try to use a command like `sudo git push`, you won't be using the same keys that you generated.
|
||||
You should not be using the `sudo` command or elevated privileges, such as administrator permissions, with Git. If you have a *very good reason* you must use `sudo`, then ensure you are using it with every command (it's probably just better to use `su` to get a shell as root at that point). If you [generate SSH keys](/articles/generating-an-ssh-key) without `sudo` and then try to use a command like `sudo git push`, you won't be using the same keys that you generated.
|
||||
|
||||
## Check that you are connecting to the correct server
|
||||
|
||||
|
||||
@@ -63,6 +63,9 @@ O gráfico de dependências permite explorar os ecossistemas e pacotes dos quais
|
||||
Você pode encontrar o gráfico de dependências na aba **Ideias** para o seu repositório. Para obter mais informações, consulte "[Sobre o gráfico de dependência](/github/visualizing-repository-data-with-graphs/about-the-dependency-graph)".
|
||||
{% endif %}
|
||||
|
||||
### Security overview for repositories
|
||||
For all public repositories, the security overview shows which security features are enabled for the repository, and offers the option to configure any available security features that are not currently enabled.
|
||||
|
||||
## Disponível com {% data variables.product.prodname_GH_advanced_security %}
|
||||
|
||||
{% data reusables.advanced-security.ghas-availability %}
|
||||
@@ -83,8 +86,8 @@ Detectar automaticamente tokens ou credenciais que foram verificados em um repos
|
||||
Mostre o impacto completo das alterações nas dependências e veja detalhes de qualquer versão vulnerável antes de fazer merge de um pull request. Para obter mais informações, consulte "[Sobre a revisão de dependências](/code-security/supply-chain-security/about-dependency-review)".
|
||||
{% endif %}
|
||||
|
||||
{% ifversion ghec or ghes > 3.1 %}
|
||||
### Visão geral da segurança
|
||||
{% ifversion ghec or ghes > 3.1 or ghae-issue-4554 %}
|
||||
### Security overview for organizations{% ifversion ghec or ghes > 3.4 or ghae-issue-6199 %}, enterprises,{% endif %} and teams
|
||||
|
||||
Revise a configuração de segurança e os alertas para sua organização e identifique os repositórios com maior risco. Para obter mais informações, consulte "[Sobre a visão geral de segurança](/code-security/security-overview/about-the-security-overview)".
|
||||
{% endif %}
|
||||
|
||||
@@ -26,11 +26,7 @@ shortTitle: Sobre a visão geral de segurança
|
||||
|
||||
## Sobre a visão geral de segurança
|
||||
|
||||
Você pode usar a visão geral de segurança para uma visão de alto nível do status de segurança da sua organização ou para identificar repositórios problemáticos que exigem intervenção.
|
||||
|
||||
- A nível da organização, a visão geral de segurança exibe informações de segurança agregadas e específicas para repositórios pertencentes à sua organização. Você também pode filtrar as informações por recurso de segurança.
|
||||
- No nível da equipe, a visão geral de segurança exibe informações de segurança específicas para repositórios para os quais a equipe tem privilégios de administrador. Para obter mais informações, consulte "[Gerenciando o acesso da equipe ao repositório de uma organização](/organizations/managing-access-to-your-organizations-repositories/managing-team-access-to-an-organization-repository)".
|
||||
- No nível do repositório, a visão geral de segurança mostra quais recursos de segurança são habilitados para o repositório e oferece a opção de configurar todos os recursos de segurança disponíveis que não estejam em uso atualmente.
|
||||
Você pode usar a visão geral de segurança para uma visão de alto nível do status de segurança da sua organização ou para identificar repositórios problemáticos que exigem intervenção. You can view aggregate or repository-specific security information in the security overview. You can also use the security overview to see which which security features are enabled for your repositories and to configure any available security features that are not currently in use.
|
||||
|
||||
A visão geral de segurança indica se {% ifversion fpt or ghes > 3.1 or ghec %}os recursos de segurança{% endif %}{% ifversion ghae %}{% data variables.product.prodname_GH_advanced_security %}{% endif %} estão habilitados para os repositórios pertencentes à sua organização e consolida os alertas para cada recurso.{% ifversion fpt or ghes > 3.1 or ghec %} As funcionalidades de segurança incluem funcionalidaes de {% data variables.product.prodname_GH_advanced_security %} como, por exemplo, {% data variables.product.prodname_code_scanning %} e {% data variables.product.prodname_secret_scanning %}, bem como {% data variables.product.prodname_dependabot_alerts %}.{% endif %} Para obter mais informações sobre as funcionalidades de {% data variables.product.prodname_GH_advanced_security %} conuslte "[Sobre {% data variables.product.prodname_GH_advanced_security %}](/get-started/learning-about-github/about-github-advanced-security)."{% ifversion fpt or ghes > 3.1 or ghec %} Para obter mais informações sobre {% data variables.product.prodname_dependabot_alerts %}, consulte "[Sobre alertas para dependências de vulnerabilidade](/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/about-alerts-for-vulnerable-dependencies#dependabot-alerts-for-vulnerable-dependencies)."{% endif %}
|
||||
|
||||
@@ -63,3 +59,24 @@ Para cada repositório na visão de segurança, você verá ícones para cada ti
|
||||
| {% octicon "x" aria-label="x" %} | O recurso de segurança não é compatível com este repositório. |
|
||||
|
||||
A visão geral de segurança exibe alertas ativos criados por funcionalidades de segurança. Se não houver alertas na visão geral de segurança de um repositório, as vulnerabilidades de segurança não detectadas ou erros de código ainda poderão existir.
|
||||
|
||||
### About the organization-level security overview
|
||||
|
||||
A nível da organização, a visão geral de segurança exibe informações de segurança agregadas e específicas para repositórios pertencentes à sua organização. You can filter information by security features at the organization-level.
|
||||
|
||||
{% ifversion ghec or ghes > 3.4 or ghae-issue-6199 %}
|
||||
### About the enterprise-level security overview
|
||||
At the enterprise-level, the security overview displays aggregate and repository-specific security information for your enterprise. You can view repositories owned by your enterprise that have security alerts or view all {% data variables.product.prodname_secret_scanning %} alerts from across your enterprise.
|
||||
|
||||
Organization owners and security managers for organizations in your enterprise also have limited access to the enterprise-level security overview. They can only view repositories and alerts for the organizations that they have full access to.
|
||||
|
||||
{% elsif fpt %}
|
||||
### About the enterprise-level security overview
|
||||
At the enterprise-level, the security overview displays aggregate and repository-specific information for an enterprise. For more information, see "[About the enterprise-level security overview](/enterprise-cloud@latest/code-security/security-overview/about-the-security-overview#about-the-enterprise-level-security-overview)" in the {% data variables.product.prodname_ghe_cloud %} documentation.
|
||||
{% endif %}
|
||||
|
||||
### About the team-level security overview
|
||||
No nível da equipe, a visão geral de segurança exibe informações de segurança específicas para repositórios para os quais a equipe tem privilégios de administrador. Para obter mais informações, consulte "[Gerenciando o acesso da equipe ao repositório de uma organização](/organizations/managing-access-to-your-organizations-repositories/managing-team-access-to-an-organization-repository)".
|
||||
|
||||
### About the repository-level security overview
|
||||
At the repository-level, the security overview shows which security features are enabled for the repository, and offers the option to configure any available security features that are not currently enabled.
|
||||
|
||||
@@ -36,6 +36,13 @@ shortTitle: Ver visão geral de segurança
|
||||
1. Na barra lateral de segurança, selecione o subconjunto de alertas que você deseja visualizar. 
|
||||
2. Opcionalmente, filtre a lista de alertas. Cada visualização tem sua própria seleção de filtros disponíveis. Você pode clicar em vários filtros nos menus suspensos de filtro para restringir a sua pesquisa. Você também pode digitar os qualificadores de busca no campo de busca. Para obter mais informações sobre os qualificados disponíveis, consulte "[Filtrando alertas na visão geral de segurança](/code-security/security-overview/filtering-alerts-in-the-security-overview)". 
|
||||
|
||||
{% ifversion ghec or ghes > 3.4 or ghae-issue-6199 %}
|
||||
## Viewing the security overview for an enterprise
|
||||
|
||||
{% data reusables.enterprise-accounts.access-enterprise-on-dotcom %}
|
||||
1. In the left sidebar, click {% octicon "shield" aria-label="The shield icon" %} **Security**.
|
||||
{% endif %}
|
||||
|
||||
## Visualizando alertas de um repositório
|
||||
|
||||
{% data reusables.repositories.navigate-to-repo %}
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
---
|
||||
title: Creating a branch to work on an issue
|
||||
intro: You can create a branch to work on an issue directly from the issue page and get started right away.
|
||||
versions:
|
||||
fpt: '*'
|
||||
ghes: '>=3.5'
|
||||
ghae: issue-6234
|
||||
ghec: '*'
|
||||
allowTitleToDifferFromFilename: true
|
||||
topics:
|
||||
- Issues
|
||||
shortTitle: Create branch for issue
|
||||
---
|
||||
|
||||
{% note %}
|
||||
|
||||
**Note:** The ability to create a branch for an issue is currently in public beta and subject to change.
|
||||
|
||||
{% endnote %}
|
||||
|
||||
## About branches connected to an issue
|
||||
Branches connected to an issue are shown under the "Development" section in the sidebar of an issue. When you create a pull request for one of these branches, it is automatically linked to the issue. The connection with that branch is removed and only the pull request is shown in the "Development" section. Para obter mais informações, consulte "[Vincular um pull request a um problema](/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue)."
|
||||
|
||||
## Creating a branch for an issue
|
||||
|
||||
Anyone with write permission to a repository can create a branch for an issue. You can link multiple branches for an issue.
|
||||
|
||||
{% data reusables.repositories.navigate-to-repo %}
|
||||
{% data reusables.repositories.sidebar-issues %}
|
||||
3. In the list of issues, click the issue that you would like to create a branch for.
|
||||
4. In the right sidebar under "Development", click **Create a branch**. If the issue already has a linked branch or pull request, click {% octicon "gear" aria-label="The Gear icon" %} and at the bottom of the drop-down menu click **Create a branch**. 
|
||||
5. By default, the new branch is created in the current repository from the default branch. Edit the branch name and details as required in the "Create a branch for this issue" dialog. 
|
||||
6. Choose whether to work on the branch locally or to open it in GitHub Desktop.
|
||||
7. When you are ready to create the branch, click **Create branch**.
|
||||
@@ -15,6 +15,7 @@ children:
|
||||
- /creating-an-issue
|
||||
- /about-task-lists
|
||||
- /linking-a-pull-request-to-an-issue
|
||||
- /creating-a-branch-for-an-issue
|
||||
- /assigning-issues-and-pull-requests-to-other-github-users
|
||||
- /viewing-all-of-your-issues-and-pull-requests
|
||||
- /filtering-and-searching-issues-and-pull-requests
|
||||
|
||||
@@ -72,7 +72,11 @@ Você pode vincular manualmente até dez problemas para cada pull request. O pro
|
||||
{% data reusables.repositories.navigate-to-repo %}
|
||||
{% data reusables.repositories.sidebar-pr %}
|
||||
3. Na lista de pull requests, clique na pull request que você gostaria de vincular a um problema.
|
||||
{% ifversion fpt or ghec or ghes > 3.4 or ghae-issue-6234 %}
|
||||
4. In the right sidebar, in the "Development" section click {% octicon "gear" aria-label="The Gear icon" %}.
|
||||
{% else %}
|
||||
4. Na barra lateral direita, clique em **Linked issues** (Problemas vinculados) 
|
||||
{% endif %}
|
||||
5. Clique no problema que você deseja associar à pull request. 
|
||||
{% endif %}
|
||||
|
||||
|
||||
@@ -13,10 +13,9 @@ topics:
|
||||
- Organizations
|
||||
- Teams
|
||||
shortTitle: Remover um integrante
|
||||
permissions: Organization owners can remove members from an organization.
|
||||
---
|
||||
|
||||
Somente proprietários da organização podem remover integrantes da organização.
|
||||
|
||||
{% ifversion fpt or ghec %}
|
||||
|
||||
{% warning %}
|
||||
@@ -63,4 +62,5 @@ Para auxiliar a transição e garantir a exclusão das informações confidencia
|
||||
|
||||
## Leia mais
|
||||
|
||||
- "[Remover integrantes da organização de uma equipe](/articles/removing-organization-members-from-a-team)"
|
||||
- "[Removing organization members from a team](/articles/removing-organization-members-from-a-team)"{% if remove-enterprise-members %}
|
||||
- "[Removing a member from your enterprise](/admin/user-management/managing-users-in-your-enterprise/removing-a-member-from-your-enterprise)"{% endif %}
|
||||
|
||||
@@ -31,6 +31,10 @@ Os proprietários da organização têm pleno acesso administrativo à organiza
|
||||
|
||||
{% endnote %}
|
||||
|
||||
{% if enterprise-owner-join-org %}
|
||||
If your organization is owned by an enterprise account, any enterprise owner can make themself an owner of your organization. For more information, see "[Managing your role in an organization owned by your enterprise](/admin/user-management/managing-organizations-in-your-enterprise/managing-your-role-in-an-organization-owned-by-your-enterprise)."
|
||||
{% endif %}
|
||||
|
||||
## Designar um proprietário da organização
|
||||
|
||||
{% data reusables.profile.access_org %}
|
||||
|
||||
@@ -30,6 +30,10 @@ As funções no nível de organização são conjuntos de permissões que podem
|
||||
|
||||
Você pode atribuir indivíduos ou equipes a diversos cargos na organização para controlar o acesso dos seus integrantes à sua organização e seus recursos. Para mais detalhes sobre as permissões individuais incluídas em cada função, consulte "[Permissões para as funções da organização](#permissions-for-organization-roles)".
|
||||
|
||||
{% if enterprise-owner-join-org %}
|
||||
If your organization is owned by an enterprise account, enterprise owners can choose to join your organization with any role. For more information, see "[Managing your role in an organization owned by your enterprise](/admin/user-management/managing-organizations-in-your-enterprise/managing-your-role-in-an-organization-owned-by-your-enterprise)."
|
||||
{% endif %}
|
||||
|
||||
### Proprietários da organização
|
||||
Os proprietários da organização têm acesso administrativo completo à sua organização. Essa função deve ser limitada a não menos que duas pessoas na sua organização. Para obter mais informações, consulte "[Manter a continuidade da propriedade para a sua organização](/organizations/managing-peoples-access-to-your-organization-with-roles/maintaining-ownership-continuity-for-your-organization)".
|
||||
|
||||
|
||||
@@ -28,11 +28,10 @@ Estes provedores de identidade são compatíveis com a API de SCIM de {% data va
|
||||
|
||||
{% endnote %}
|
||||
|
||||
{% data reusables.scim.changes-should-come-from-idp %}
|
||||
|
||||
{% data reusables.scim.enterprise-account-scim %}
|
||||
|
||||
## Leia mais
|
||||
|
||||
- "[Sobre gerenciamento de identidade e acesso com o SAML de logon único](/articles/about-identity-and-access-management-with-saml-single-sign-on)"
|
||||
- "[Conectar o provedor de identidade à sua organização](/articles/connecting-your-identity-provider-to-your-organization)"
|
||||
- "[Habilitar e testar SAML de logon único para sua organização](/articles/enabling-and-testing-saml-single-sign-on-for-your-organization)"
|
||||
- "[Visualizar e gerenciar acesso de SAML de um integrante à sua organização](/github/setting-up-and-managing-organizations-and-teams//viewing-and-managing-a-members-saml-access-to-your-organization)"
|
||||
|
||||
@@ -11,7 +11,11 @@ shortTitle: Solução de problemas de acesso
|
||||
|
||||
## Alguns usuários não são provisionados ou desprovisionados pelo SCIM
|
||||
|
||||
Ao encontrar problemas de provisionamento com os usuários, recomendamos que verifique se os usuários não têm metadados de SCIM. Se um integrante da organização não tiver metadados do SCIM, você poderá provisionar o SCIM novamente para o usuário manualmente por meio do seu IdP.
|
||||
Ao encontrar problemas de provisionamento com os usuários, recomendamos que verifique se os usuários não têm metadados de SCIM.
|
||||
|
||||
{% data reusables.scim.changes-should-come-from-idp %}
|
||||
|
||||
Se um integrante da organização não tiver metadados do SCIM, você poderá provisionar o SCIM novamente para o usuário manualmente por meio do seu IdP.
|
||||
|
||||
### Auditoria de usuários com relação à falta de metadados do SCIM
|
||||
|
||||
@@ -78,7 +82,7 @@ Para obter mais informações sobre o uso da API do GraphQL, consulte:
|
||||
|
||||
### Reprovisionando o SCIM para os usuários por meio do seu provedor de identidade
|
||||
|
||||
Você pode provisionar o SCIM novamente para os usuários manualmente por meio do seu IdP. Por exemplo, para resolver erros de provisionamento, no portal de administração do Okta, você pode desatribuir e reatribuir os usuários para o aplicativo de {% data variables.product.prodname_dotcom %}. Isto deve acionar o Okta para fazer uma chamada da API para preencher os metadados do SCIM para esses usuários em {% data variables.product.prodname_dotcom %}. Para obter mais informações, consulte "[Desatribuir usuários de aplicativos](https://help.okta.com/en/prod/Content/Topics/users-groups-profiles/usgp-unassign-apps.htm)" ou "[Atribuir usuários aos aplicativos](https://help.okta.com/en/prod/Content/Topics/users-groups-profiles/usgp-assign-apps.htm)" na documentação do Okta.
|
||||
Você pode provisionar o SCIM novamente para os usuários manualmente por meio do seu IdP. For example, to resolve provisioning errors for Okta, in the Okta admin portal, you can unassign and reassign users to the {% data variables.product.prodname_dotcom %} app. Isto deve acionar o Okta para fazer uma chamada da API para preencher os metadados do SCIM para esses usuários em {% data variables.product.prodname_dotcom %}. Para obter mais informações, consulte "[Desatribuir usuários de aplicativos](https://help.okta.com/en/prod/Content/Topics/users-groups-profiles/usgp-unassign-apps.htm)" ou "[Atribuir usuários aos aplicativos](https://help.okta.com/en/prod/Content/Topics/users-groups-profiles/usgp-assign-apps.htm)" na documentação do Okta.
|
||||
|
||||
Para confirmar que a identidade do SCIM de um usuário foi criada. Recomendamos testar este processo com um único integrante de uma organização que você tenha confirmado que não tem uma identidade externa do SCIM. Depois de atualizar manualmente os usuários do seu IdP, você poderá verificar se a identidade SCIM do usuário foi criada usando a API SCIM ou em {% data variables.product.prodname_dotcom %}. Para mais informações consulte "[Usuários de auditoria por falta de metadados SCIM](#auditing-users-for-missing-scim-metadata)" ou o ponto de extremidade da API REST "[Obtenha informações de provisionamento do SCIM para um usuário](/rest/reference/scim#get-scim-provisioning-information-for-a-user)."
|
||||
|
||||
|
||||
@@ -26,10 +26,22 @@ permissions: People with write access for a forked repository can sync the fork
|
||||
|
||||
Se as alterações do repositório a upstream gerarem conflitos, {% data variables.product.company_short %} solicitará a criação de um pull request para resolver os conflitos.
|
||||
|
||||
## Syncing a fork with the {% data variables.product.prodname_cli %}
|
||||
|
||||
{% data reusables.cli.about-cli %} Para saber mais sobre {% data variables.product.prodname_cli %}, consulte "[Sobre {% data variables.product.prodname_cli %}](/github-cli/github-cli/about-github-cli)."
|
||||
|
||||
To update the remote fork from its parent, use the `gh repo sync` subcommand and supply your fork name as argument.
|
||||
|
||||
```shell
|
||||
$ gh repo sync owner/cli-fork
|
||||
```
|
||||
|
||||
If the changes from the upstream repository cause conflict then the {% data variables.product.prodname_cli %} can't sync. You can set the `-force` flag to overwrite the destination branch.
|
||||
|
||||
## Sincronizando uma bifurcação a partir da linha de comando
|
||||
|
||||
{% endif %}
|
||||
Para poder sincronizar a bifurcação com o repositório upstream, você deve [configurar um remote que aponte para o repositório upstream](/pull-requests/collaborating-with-pull-requests/working-with-forks/configuring-a-remote-for-a-fork) no Git.
|
||||
Before you can sync your fork with an upstream repository, you must [configure a remote that points to the upstream repository](/pull-requests/collaborating-with-pull-requests/working-with-forks/configuring-a-remote-for-a-fork) in Git.
|
||||
|
||||
{% data reusables.command_line.open_the_multi_os_terminal %}
|
||||
2. Altere o diretório de trabalho atual referente ao seu projeto local.
|
||||
@@ -74,6 +86,6 @@ Para poder sincronizar a bifurcação com o repositório upstream, você deve [c
|
||||
|
||||
{% tip %}
|
||||
|
||||
**Dica**: a sincronização da bifurcação só atualiza a cópia local do repositório. Para atualizar a bifurcação no {% data variables.product.product_location %}, você precisa [fazer push das alterações](/github/getting-started-with-github/pushing-commits-to-a-remote-repository/).
|
||||
**Tip**: Syncing your fork only updates your local copy of the repository. Para atualizar a bifurcação no {% data variables.product.product_location %}, você precisa [fazer push das alterações](/github/getting-started-with-github/pushing-commits-to-a-remote-repository/).
|
||||
|
||||
{% endtip %}
|
||||
|
||||
@@ -63,7 +63,7 @@ Ao criar uma regra de branch, o branch que você especificar ainda não existe n
|
||||
- Opcionalmente, para ignorar uma revisão de aprovação de pull request quando um commit de modificação de código for enviado por push para o branch, selecione **Ignorar aprovações obsoletas de pull request quando novos commits forem enviados por push**. 
|
||||
- Opcionalmente, para exigir a revisão de um proprietário do código quando o pull request afeta o código que tem um proprietário designado, selecione **Exigir revisão de Proprietários do Código**. Para obter mais informações, consulte "[Sobre proprietários do código](/github/creating-cloning-and-archiving-repositories/about-code-owners)". 
|
||||
{% ifversion fpt or ghec or ghes > 3.3 or ghae-issue-5611 %}
|
||||
- Opcionalmente, para permitir que pessoas ou equipes específicas façam push de código para o branch sem estar sujeito às regras de pull request acima, selecione **Permitir que atores específicos ignorem os requisitos de pull request**. Em seguida, pesquise e selecione as pessoas ou equipes que têm permissão para ignorar os requisitos do pull request. 
|
||||
- Optionally, to allow specific people or teams to push code to the branch without creating pull requests when they're required, select **Allow specific actors to bypass required pull requests**. Then, search for and select the people or teams who should be allowed to skip creating a pull request. 
|
||||
{% endif %}
|
||||
- Opcionalmente, se o repositório fizer parte de uma organização, selecione **Restringir quem pode ignorar as revisões de pull request**. Em seguida, procure e selecione as pessoas ou equipes que têm permissão para ignorar as revisões de pull request. Para obter mais informações, consulte "[Ignorar uma revisão de pull request](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/dismissing-a-pull-request-review)". 
|
||||
1. Opcionalmente, habilite as verificações de status obrigatórias. Para obter mais informações, consulte "[Sobre verificações de status](/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/about-status-checks)".
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
versions:
|
||||
ghec: '*'
|
||||
ghes: '>=3.5'
|
||||
ghae: 'issue-5740'
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
versions:
|
||||
ghec: '*'
|
||||
ghes: '>=3.5'
|
||||
ghae: 'issue-5739'
|
||||
@@ -0,0 +1 @@
|
||||
If SCIM provisioning is implemented for your organization, any changes to a user's organization membership should be triggered from the identity provider. If a user is invited to an organization manually instead of by an existing SCIM integration, their user account may not get properly linked to their SCIM identity. This can prevent the user account from being deprovisioned via SCIM in the future. If a user is removed manually instead of by an existing SCIM integration, a stale linked identity will remain, which can lead to issues if the user needs to re-join the organization.
|
||||
@@ -94,6 +94,11 @@ products:
|
||||
deprecation_notice: Aviso de descontinuação
|
||||
rest:
|
||||
reference:
|
||||
default: Padrão
|
||||
name: Nome
|
||||
in: In
|
||||
type: Tipo
|
||||
description: Descrição
|
||||
notes: Observações
|
||||
parameters: Parâmetros
|
||||
response: Resposta
|
||||
@@ -104,6 +109,7 @@ products:
|
||||
see_preview_notice: Ver aviso de pré-visualização
|
||||
see_preview_notices: Ver avisos de pré-visualização
|
||||
preview_header_is_required: Este cabeçalho é <strong>obrigatório</strong>
|
||||
preview_notice_to_change: This API is under preview and subject to change
|
||||
works_with_github_apps: Works with GitHub Apps
|
||||
footer:
|
||||
all_rights_reserved: Todos os direitos reservados
|
||||
|
||||
Reference in New Issue
Block a user