Skip to content

Commit 84611d2

Browse files
authored
Merge pull request github#16211 from github/repo-sync
repo sync
2 parents 7c4cfb3 + 2623764 commit 84611d2

File tree

214 files changed

+1291
-1031
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

214 files changed

+1291
-1031
lines changed

.github/workflows/azure-preview-env-destroy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
# This will fail if the IMAGE_REPO doesn't exist, but we don't care
6262
- name: 'Untag all docker images for this PR'
6363
run: |
64-
az acr repository delete -n ${{ secrets.NONPROD_REGISTRY_NAME }} --repository ${{ env.IMAGE_REPO }} -y || true
64+
az acr repository delete -n ${{ secrets.NONPROD_REGISTRY_SERVER }} --repository ${{ env.IMAGE_REPO }} -y || true
6565
6666
# Remove all GitHub deployments from this environment and remove the environment
6767
- uses: strumwolf/delete-deployment-environment@45c821e46baa405e25410700fe2e9643929706a0

translations/log/pt-resets.csv

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ translations/pt-BR/content/actions/hosting-your-own-runners/adding-self-hosted-r
55
translations/pt-BR/content/actions/hosting-your-own-runners/adding-self-hosted-runners.md,broken liquid tags
66
translations/pt-BR/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md,broken liquid tags
77
translations/pt-BR/content/actions/hosting-your-own-runners/using-self-hosted-runners-in-a-workflow.md,Listed in localization-support#489
8+
translations/pt-BR/content/admin/configuration/configuring-github-connect/managing-github-connect.md,broken liquid tags
89
translations/pt-BR/content/admin/configuration/configuring-your-enterprise/configuring-rate-limits.md,broken liquid tags
910
translations/pt-BR/content/admin/configuration/configuring-your-enterprise/site-admin-dashboard.md,broken liquid tags
1011
translations/pt-BR/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/increasing-cpu-or-memory-resources.md,broken liquid tags
@@ -20,6 +21,7 @@ translations/pt-BR/content/code-security/code-scanning/automatically-scanning-yo
2021
translations/pt-BR/content/code-security/code-scanning/integrating-with-code-scanning/sarif-support-for-code-scanning.md,broken liquid tags
2122
translations/pt-BR/content/code-security/code-scanning/integrating-with-code-scanning/uploading-a-sarif-file-to-github.md,broken liquid tags
2223
translations/pt-BR/content/code-security/code-scanning/using-codeql-code-scanning-with-your-existing-ci-system/configuring-codeql-runner-in-your-ci-system.md,broken liquid tags
24+
translations/pt-BR/content/code-security/secret-scanning/about-secret-scanning.md,broken liquid tags
2325
translations/pt-BR/content/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema.md,broken liquid tags
2426
translations/pt-BR/content/desktop/installing-and-configuring-github-desktop/overview/creating-your-first-repository-using-github-desktop.md,broken liquid tags
2527
translations/pt-BR/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/why-wasnt-my-application-for-a-student-developer-pack-approved.md,broken liquid tags

translations/pt-BR/content/account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/why-are-my-contributions-not-showing-up-on-my-profile.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ shortTitle: Contribuições ausentes
1919

2020
Seu gráfico de contribuições de perfil é um registro de contribuições que você fez para repositórios {% ifversion ghae %}pertencentes a{% else %}em{% endif %} {% data variables.product.product_location %}. As contribuições recebem registros de data e hora de acordo com o UTC (Coordinated Universal Time, Horário universal coordenado), e não com o fuso horário local. As contribuições só serão contabilizadas se atenderem a determinados critérios. Em alguns casos, pode ser necessário recriar o gráfico para que as contribuições sejam exibidas.
2121

22+
If you are part of an organization that uses SAML single sign-on (SSO), you won’t be able to see contribution activity from the organization on your profile if you do not have an active SSO session. People viewing your profile from outside your organization will see anonymized contribution activity of your contribution activity for your organization.
23+
2224
## Contribuições que são contabilizadas
2325

2426
### Problemas, pull requests e discussões

translations/pt-BR/content/actions/creating-actions/creating-a-javascript-action.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ No diretório `hello-world-javascript-action`, crie um arquivo `README.md` que e
141141
- Variáveis de ambiente usadas pela ação;
142142
- Um exemplo de uso da ação no fluxo de trabalho.
143143

144-
```markdown
144+
```markdown{:copy}
145145
# Hello world javascript action
146146
147147
Esta ação imprime "Hello World" ou "Hello" + o nome de uma pessoa a ser cumprimentada no log.
@@ -193,7 +193,7 @@ Verificar seu diretório `node_modules` pode causar problemas. Como alternativa,
193193
1. Se você já verificou o diretório `node_modules`, remova-o. `rm -rf node_modules/*`
194194

195195
1. No seu terminal, faça commit das atualizações para os arquivos `action.yml`, `dist/index.js` e `node_modules`.
196-
```shell
196+
```shell{:copy}
197197
git add action.yml dist/index.js node_modules/*
198198
git commit -m "Use vercel/ncc"
199199
git tag -a -m "My first action release" v1.1

translations/pt-BR/content/actions/deployment/about-deployments/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ shortTitle: Sobre implantações
44
intro: 'Aprenda como as implantações podem ser executadas com fluxos de trabalho de {% data variables.product.prodname_actions %}.'
55
versions:
66
fpt: '*'
7-
ghae: issue-4856
7+
ghes: '*'
8+
ghae: '*'
89
ghec: '*'
910
children:
1011
- /about-continuous-deployment

translations/pt-BR/content/actions/deployment/deploying-xcode-applications/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ shortTitle: Fazendo a implantação de aplicativos Xcode
44
intro: 'Você pode assinar aplicativos Xcode na sua integração contínua (CI) instalando um certificado de assinatura de código da Apple nos executores de {% data variables.product.prodname_actions %}.'
55
versions:
66
fpt: '*'
7-
ghae: issue-4856
7+
ghes: '*'
8+
ghae: '*'
89
ghec: '*'
910
children:
1011
- /installing-an-apple-certificate-on-macos-runners-for-xcode-development

translations/pt-BR/content/actions/deployment/managing-your-deployments/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ shortTitle: Gerenciando as suas implantações
44
intro: Você pode revisar a atividade anterior das suas implantações.
55
versions:
66
fpt: '*'
7-
ghae: issue-4856
7+
ghes: '*'
8+
ghae: '*'
89
ghec: '*'
910
children:
1011
- /viewing-deployment-history

translations/pt-BR/content/actions/deployment/targeting-different-environments/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ shortTitle: Apontando para diferentes ambientes
44
intro: Você pode configurar ambientes com regras de proteção e segredos. Um trabalho de fluxo de trabalho que faz referência a um ambiente deve seguir quaisquer regras de proteção para o ambiente antes de executar ou acessar os segredos do ambiente.
55
versions:
66
fpt: '*'
7-
ghae: issue-4856
7+
ghes: '*'
8+
ghae: '*'
89
ghec: '*'
910
children:
1011
- /using-environments-for-deployment

translations/pt-BR/content/actions/hosting-your-own-runners/about-self-hosted-runners.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ For more information about installing and using self-hosted runners, see "[Addin
5151
- Can use cloud services or local machines that you already pay for.
5252
- Are customizable to your hardware, operating system, software, and security requirements.
5353
- Don't need to have a clean instance for every job execution.
54-
- Are free to use with {% data variables.product.prodname_actions %}, but you are responsible for the cost of maintaining your runner machines.
54+
- Are free to use with {% data variables.product.prodname_actions %}, but you are responsible for the cost of maintaining your runner machines.{% ifversion ghec or ghes or ghae %}
55+
- Can be organized into groups to restrict access to specific {% if restrict-groups-to-workflows %}workflows, {% endif %}organizations and repositories. For more information, see "[Managing access to self-hosted runners using groups](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups)."{% endif %}
5556

5657
## Requirements for self-hosted runner machines
5758

@@ -186,7 +187,7 @@ github-registry-files.githubusercontent.com
186187

187188
In addition, your workflow may require access to other network resources. For example, if your workflow installs packages or publishes containers to {% data variables.product.prodname_dotcom %} Packages, then the runner will also require access to those network endpoints.
188189

189-
If you use an IP address allow list for your {% data variables.product.prodname_dotcom %} organization or enterprise account, you must add your self-hosted runner's IP address to the allow list. For more information, see "[Managing allowed IP addresses for your organization](/organizations/keeping-your-organization-secure/managing-allowed-ip-addresses-for-your-organization#using-github-actions-with-an-ip-allow-list)" or "[Enforcing policies for security settings in your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise)".
190+
If you use an IP address allow list for your {% data variables.product.prodname_dotcom %} organization or enterprise account, you must add your self-hosted runner's IP address to the allow list. For more information, see "[Managing allowed IP addresses for your organization](/{% ifversion fpt %}enterprise-cloud@latest/{% endif %}/organizations/keeping-your-organization-secure/managing-allowed-ip-addresses-for-your-organization#using-github-actions-with-an-ip-allow-list)" or "[Enforcing policies for security settings in your enterprise](/{% ifversion fpt %}enterprise-cloud@latest/{% endif %}admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %}
190191

191192
{% else %}
192193

translations/pt-BR/content/actions/hosting-your-own-runners/configuring-the-self-hosted-runner-application-as-a-service.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,12 @@ Você pode gerenciar o serviço do executor no aplicativo **Serviços** do Windo
7878
```
7979
{% endmac %}
8080

81+
O comando usa um argumento `usuário` opcional para instalar o serviço como um usuário diferente.
82+
83+
```shell
84+
./svc.sh install --user <em>USERNAME</em>
85+
```
86+
8187
## Iniciar o serviço
8288

8389
Inicie o serviço com o seguinte comando:

0 commit comments

Comments
 (0)