diff --git a/translations/pt-BR/content/actions/hosting-your-own-runners/about-self-hosted-runners.md b/translations/pt-BR/content/actions/hosting-your-own-runners/about-self-hosted-runners.md index 5cfbf77602..af61355b2f 100644 --- a/translations/pt-BR/content/actions/hosting-your-own-runners/about-self-hosted-runners.md +++ b/translations/pt-BR/content/actions/hosting-your-own-runners/about-self-hosted-runners.md @@ -123,7 +123,7 @@ The following operating systems are supported for the self-hosted runner applica The following processor architectures are supported for the self-hosted runner application. - `x64` - Linux, macOS, Windows. -- `ARM64` - Linux, macOS. +- `ARM64` - Linux{% ifversion actions-macos-arm %}, macOS{% endif %}. - `ARM32` - Linux only. {% ifversion ghes %} diff --git a/translations/pt-BR/content/actions/learn-github-actions/contexts.md b/translations/pt-BR/content/actions/learn-github-actions/contexts.md index e263bc7c93..9786fea20d 100644 --- a/translations/pt-BR/content/actions/learn-github-actions/contexts.md +++ b/translations/pt-BR/content/actions/learn-github-actions/contexts.md @@ -718,7 +718,7 @@ jobs: ## `needs` context -The `needs` context contains outputs from all jobs that are defined as a dependency of the current job. For more information on defining job dependencies, see "[Workflow syntax for {% data variables.product.prodname_actions %}](/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idneeds)." +The `needs` context contains outputs from all jobs that are defined as a direct dependency of the current job. Note that this doesn't include implicitly dependent jobs (for example, dependent jobs of a dependent job). For more information on defining job dependencies, see "[Workflow syntax for {% data variables.product.prodname_actions %}](/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idneeds)." | Property name | Type | Description | |---------------|------|-------------| diff --git a/translations/pt-BR/content/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file.md b/translations/pt-BR/content/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file.md index 267e8a3424..9dcf891257 100644 --- a/translations/pt-BR/content/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file.md +++ b/translations/pt-BR/content/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file.md @@ -77,19 +77,19 @@ updates: - package-ecosystem: "github-actions" directory: "/" schedule: - interval: "daily" + interval: "weekly" # Maintain dependencies for npm - package-ecosystem: "npm" directory: "/" schedule: - interval: "daily" + interval: "weekly" # Maintain dependencies for Composer - package-ecosystem: "composer" directory: "/" schedule: - interval: "daily" + interval: "weekly" ``` ### `directory` @@ -105,29 +105,31 @@ updates: # Files stored in repository root directory: "/" schedule: - interval: "daily" + interval: "weekly" - package-ecosystem: "npm" # Files stored in `app` directory directory: "/app" schedule: - interval: "daily" + interval: "weekly" - package-ecosystem: "github-actions" # Workflow files stored in the # default location of `.github/workflows` directory: "/" schedule: - interval: "daily" + interval: "weekly" ``` ### `schedule.interval` **Required**. You must define how often to check for new versions for each package manager. By default, {% data variables.product.prodname_dependabot %} randomly assigns a time to apply all the updates in the configuration file. To set a specific time, you can use [`schedule.time`](#scheduletime) and [`schedule.timezone`](#scheduletimezone). -- `daily`—runs on every weekday, Monday to Friday. -- `weekly`—runs once each week. By default, this is on Monday. To modify this, use [`schedule.day`](#scheduleday). -- `monthly`—runs once each month. This is on the first day of the month. +| Interval types | Frequency | +|----------------|-----------| +| `daily` | Runs on every weekday, Monday to Friday.| +| `weekly`| Runs once each week. By default, this is on Monday. To modify this, use [`schedule.day`](#scheduleday).| +| `monthly` | Runs once each month. This is on the first day of the month. | ```yaml # Set update schedule for each package manager @@ -179,7 +181,7 @@ updates: - package-ecosystem: "npm" directory: "/" schedule: - interval: "daily" + interval: "weekly" allow: # Allow updates for Lodash - dependency-name: "lodash" @@ -189,7 +191,7 @@ updates: - package-ecosystem: "composer" directory: "/" schedule: - interval: "daily" + interval: "weekly" allow: # Allow both direct and indirect updates for all packages - dependency-type: "all" @@ -197,7 +199,7 @@ updates: - package-ecosystem: "pip" directory: "/" schedule: - interval: "daily" + interval: "weekly" allow: # Allow only direct updates for # Django and any packages starting "django" @@ -222,7 +224,7 @@ updates: - package-ecosystem: "npm" directory: "/" schedule: - interval: "daily" + interval: "weekly" # Add assignees assignees: - "octocat" @@ -254,7 +256,7 @@ updates: - package-ecosystem: "npm" directory: "/" schedule: - interval: "daily" + interval: "weekly" commit-message: # Prefix all commit messages with "npm" prefix: "npm" @@ -262,7 +264,7 @@ updates: - package-ecosystem: "composer" directory: "/" schedule: - interval: "daily" + interval: "weekly" # Prefix all commit messages with "Composer" # include a list of updated dependencies commit-message: @@ -272,7 +274,7 @@ updates: - package-ecosystem: "pip" directory: "/" schedule: - interval: "daily" + interval: "weekly" # Include a list of updated dependencies # with a prefix determined by the dependency group commit-message: @@ -318,7 +320,7 @@ updates: - package-ecosystem: "npm" directory: "/" schedule: - interval: "daily" + interval: "weekly" ignore: - dependency-name: "express" # For Express, ignore all updates for version 4 and 5 @@ -389,7 +391,7 @@ updates: - package-ecosystem: "npm" directory: "/" schedule: - interval: "daily" + interval: "weekly" # Specify labels for npm pull requests labels: - "npm" @@ -410,7 +412,7 @@ updates: - package-ecosystem: "npm" directory: "/" schedule: - interval: "daily" + interval: "weekly" # Associate pull requests with milestone "4" milestone: 4 ``` @@ -429,14 +431,14 @@ updates: - package-ecosystem: "npm" directory: "/" schedule: - interval: "daily" + interval: "weekly" # Disable version updates for npm dependencies open-pull-requests-limit: 0 - package-ecosystem: "pip" directory: "/" schedule: - interval: "daily" + interval: "weekly" # Allow up to 10 open pull requests for pip dependencies open-pull-requests-limit: 10 ``` @@ -457,7 +459,7 @@ updates: - package-ecosystem: "npm" directory: "/" schedule: - interval: "daily" + interval: "weekly" pull-request-branch-name: # Separate sections of the branch name with a hyphen # for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1` @@ -483,7 +485,7 @@ updates: - package-ecosystem: "npm" directory: "/" schedule: - interval: "daily" + interval: "weekly" # Disable rebasing for npm pull requests rebase-strategy: "disabled" ``` @@ -535,7 +537,7 @@ updates: - package-ecosystem: "pip" directory: "/" schedule: - interval: "daily" + interval: "weekly" # Add reviewers reviewers: - "octocat" @@ -581,7 +583,7 @@ updates: - package-ecosystem: "npm" directory: "/" schedule: - interval: "daily" + interval: "weekly" # Check for npm updates at 9am UTC time: "09:00" ``` @@ -598,7 +600,7 @@ updates: - package-ecosystem: "npm" directory: "/" schedule: - interval: "daily" + interval: "weekly" time: "09:00" # Use Japan Standard Time (UTC +09:00) timezone: "Asia/Tokyo" @@ -616,7 +618,7 @@ updates: - package-ecosystem: "pip" directory: "/" schedule: - interval: "daily" + interval: "weekly" # Raise pull requests for version updates # to pip against the `develop` branch target-branch: "develop" @@ -689,7 +691,7 @@ updates: - package-ecosystem: "npm" directory: "/" schedule: - interval: "daily" + interval: "weekly" # Update the npm manifest file to relax # the version requirements versioning-strategy: widen @@ -697,7 +699,7 @@ updates: - package-ecosystem: "composer" directory: "/" schedule: - interval: "daily" + interval: "weekly" # Increase the version requirements for Composer # only when required versioning-strategy: increase-if-necessary @@ -705,7 +707,7 @@ updates: - package-ecosystem: "pip" directory: "/" schedule: - interval: "daily" + interval: "weekly" # Only allow updates to the lockfile for pip and # ignore any version updates that affect the manifest versioning-strategy: lockfile-only @@ -993,6 +995,6 @@ updates:{% ifversion fpt or ghec or ghes > 3.5 %} - package-ecosystem: "pub"{% endif %} directory: "/" schedule: - interval: "daily" + interval: "weekly" ``` {% endif %} diff --git a/translations/pt-BR/content/get-started/writing-on-github/working-with-advanced-formatting/attaching-files.md b/translations/pt-BR/content/get-started/writing-on-github/working-with-advanced-formatting/attaching-files.md index 9e3f76ad76..0d8309b7b8 100644 --- a/translations/pt-BR/content/get-started/writing-on-github/working-with-advanced-formatting/attaching-files.md +++ b/translations/pt-BR/content/get-started/writing-on-github/working-with-advanced-formatting/attaching-files.md @@ -22,6 +22,8 @@ To attach a file to an issue or pull request conversation, drag and drop it into ![Select attachments from computer](/assets/images/help/pull_requests/select-bar.png) +When you attach a file, it is uploaded immediately to {% data variables.product.product_name %} and the text field is updated to show the anonymized URL for the file. {% ifversion fpt or ghec %}For more information on anonymized URLs see "[About anonymized URLs](/github/authenticating-to-github/about-anonymized-urls)".{% endif %} + {% tip %} **Tip:** In many browsers, you can copy-and-paste images directly into the box. diff --git a/translations/pt-BR/content/rest/overview/permissions-required-for-github-apps.md b/translations/pt-BR/content/rest/overview/permissions-required-for-github-apps.md index 44ed7ae6d1..ffa76e3719 100644 --- a/translations/pt-BR/content/rest/overview/permissions-required-for-github-apps.md +++ b/translations/pt-BR/content/rest/overview/permissions-required-for-github-apps.md @@ -702,10 +702,10 @@ Issues and pull requests are closely related. For more information, see "[List i ## Permission on "pages" +GitHub Pages can only be created or unpublished by a repository owner or administrator. + - [`GET /repos/:owner/:repo/pages`](/rest/reference/pages#get-a-github-pages-site) (:read) -- [`POST /repos/:owner/:repo/pages`](/rest/reference/pages#create-a-github-pages-site) (:write) - [`PUT /repos/:owner/:repo/pages`](/rest/reference/pages#update-information-about-a-github-pages-site) (:write) -- [`DELETE /repos/:owner/:repo/pages`](/rest/reference/pages#delete-a-github-pages-site) (:write) - [`GET /repos/:owner/:repo/pages/builds`](/rest/reference/pages#list-github-pages-builds) (:read) - [`POST /repos/:owner/:repo/pages/builds`](/rest/reference/pages#request-a-github-pages-build) (:write) - [`GET /repos/:owner/:repo/pages/builds/:build_id`](/rest/reference/pages#get-github-pages-build) (:read) diff --git a/translations/pt-BR/data/reusables/secret-scanning/partner-secret-list-private-repo.md b/translations/pt-BR/data/reusables/secret-scanning/partner-secret-list-private-repo.md index a967d039cf..f70ad1c9c4 100644 --- a/translations/pt-BR/data/reusables/secret-scanning/partner-secret-list-private-repo.md +++ b/translations/pt-BR/data/reusables/secret-scanning/partner-secret-list-private-repo.md @@ -36,6 +36,10 @@ CloudBees CodeShip | CloudBees CodeShip Credential | codeship_credential {%- ifversion fpt or ghec or ghes > 3.2 or ghae %} Contentful | Contentful Personal Access Token | contentful_personal_access_token{% endif %} Databricks | Databricks Access Token | databricks_access_token +{%- ifversion fpt or ghec or ghes > 3.8 or ghae > 3.8 %} +DevCycle | DevCycle Client API Key | devcycle_client_api_key +DevCycle | DevCycle Server API Key | devcycle_server_api_key +DevCycle | DevCycle Mobile API Key | devcycle_mobile_api_key{% endif %} {%- ifversion fpt or ghec or ghes > 3.4 or ghae > 3.4 %} DigitalOcean | DigitalOcean Personal Access Token | digitalocean_personal_access_token DigitalOcean | DigitalOcean OAuth Token | digitalocean_oauth_token @@ -104,6 +108,9 @@ Linear | Linear API Key | linear_api_key Linear | Linear OAuth Access Token | linear_oauth_access_token Lob | Lob Live API Key | lob_live_api_key Lob | Lob Test API Key | lob_test_api_key +{%- ifversion fpt or ghec or ghes > 3.8 or ghae > 3.8 %} +LogicMonitor | LogicMonitor Bearer Token | logicmonitor_bearer_token +LogicMonitor | LogicMonitor LMV1 Access Key | logicmonitor_lmv1_access_key{% endif %} Mailchimp | Mailchimp API Key | mailchimp_api_key Mailgun | Mailgun API Key | mailgun_api_key {%- ifversion fpt or ghec or ghes > 3.3 or ghae > 3.3 %} diff --git a/translations/pt-BR/data/reusables/secret-scanning/secret-list-private-push-protection.md b/translations/pt-BR/data/reusables/secret-scanning/secret-list-private-push-protection.md index 74676aa525..e73196547f 100644 --- a/translations/pt-BR/data/reusables/secret-scanning/secret-list-private-push-protection.md +++ b/translations/pt-BR/data/reusables/secret-scanning/secret-list-private-push-protection.md @@ -17,6 +17,10 @@ Azure | Azure Storage Account Key | azure_storage_account_key{% endif %} Checkout.com | Checkout.com Production Secret Key | checkout_production_secret_key Clojars | Clojars Deploy Token | clojars_deploy_token Databricks | Databricks Access Token | databricks_access_token +{%- ifversion fpt or ghec or ghes > 3.8 or ghae > 3.8 %} +DevCycle | DevCycle Client API Key | devcycle_client_api_key +DevCycle | DevCycle Server API Key | devcycle_server_api_key +DevCycle | DevCycle Mobile API Key | devcycle_mobile_api_key{% endif %} DigitalOcean | DigitalOcean Personal Access Token | digitalocean_personal_access_token DigitalOcean | DigitalOcean OAuth Token | digitalocean_oauth_token DigitalOcean | DigitalOcean Refresh Token | digitalocean_refresh_token @@ -50,6 +54,9 @@ Ionic | Ionic Personal Access Token | ionic_personal_access_token Ionic | Ionic Refresh Token | ionic_refresh_token Linear | Linear API Key | linear_api_key Linear | Linear OAuth Access Token | linear_oauth_access_token +{%- ifversion fpt or ghec or ghes > 3.8 or ghae > 3.8 %} +LogicMonitor | LogicMonitor Bearer Token | logicmonitor_bearer_token +LogicMonitor | LogicMonitor LMV1 Access Key | logicmonitor_lmv1_access_key{% endif %} Midtrans | Midtrans Production Server Key | midtrans_production_server_key New Relic | New Relic Personal API Key | new_relic_personal_api_key New Relic | New Relic REST API Key | new_relic_rest_api_key