From 5d7973b92896fb13c4b95e79b334a68951550636 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Wed, 30 Mar 2022 11:56:18 -0400 Subject: [PATCH 1/2] make PR about deletable orphan assets (#26484) * warn on orphan images * oops * temporarily adding orphan image * fix the bug * permission * better comment * try this * try this * debugging * debugging * using fs * cjs * remove experiment image * debugging * debugging * try that * try that * git config * cleaning * token * body * label * try that * try that * try that * not upstream * try that * token twice * try again * cleaning up * fix unit test * one more exception * feedbacked --- .github/workflows/orphaned-assets-check.yml | 40 ++++++++++++++++++--- script/find-orphaned-assets.mjs | 13 +++++-- 2 files changed, 45 insertions(+), 8 deletions(-) diff --git a/.github/workflows/orphaned-assets-check.yml b/.github/workflows/orphaned-assets-check.yml index c300159f4677..18204888de41 100644 --- a/.github/workflows/orphaned-assets-check.yml +++ b/.github/workflows/orphaned-assets-check.yml @@ -5,20 +5,24 @@ name: 'Orphaned assets check' # **Who does it impact**: Docs content. on: - pull_request: - push: - branches: - - gh-readonly-queue/main/** + workflow_dispatch: + schedule: + - cron: '13 10 * * *' # Once a day at 10:13 UTC permissions: contents: read jobs: orphaned-assets-check: + if: ${{ github.repository == 'github/docs-internal' }} runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 + with: + # Using a PAT is necessary so that the new commit will trigger the + # CI in the PR. (Events from GITHUB_TOKEN don't trigger new workflows.) + token: ${{ secrets.DOCUBOT_REPO_PAT }} - name: Setup node uses: actions/setup-node@1f8c6b94b26d0feae1e387ca63ccbdc44d27b561 @@ -30,4 +34,30 @@ jobs: run: npm ci - name: Check for orphaned assets - run: ./script/find-orphaned-assets.mjs --verbose --exit + env: + # Needed for gh + GITHUB_TOKEN: ${{ secrets.DOCUBOT_REPO_PAT }} + run: | + set -e + + ./script/find-orphaned-assets.mjs | xargs git rm + + # If nothing to commit, exit now. It's fine. No orphans. + git status | grep 'nothing to commit' && exit 0 + + # Replicated from the translation pipeline PR-maker Action + git config --global user.name "docubot" + git config --global user.email "67483024+docubot@users.noreply.github.com" + + date=$(date '+%Y-%m-%d-%H-%M') + branchname=orphaned-assets-$date-$GITHUB_RUN_ID + + git checkout -b $branchname + git commit -m "Delete orphaned assets $date" + git push origin $branchname + + gh pr create \ + --title "Delete orphaned assets ($date)" \ + --body "Found with the find-orphaned-assets.mjs script" \ + --repo github/docs-internal \ + --label docs-content-fr diff --git a/script/find-orphaned-assets.mjs b/script/find-orphaned-assets.mjs index b762d2863a29..626b41482058 100755 --- a/script/find-orphaned-assets.mjs +++ b/script/find-orphaned-assets.mjs @@ -12,7 +12,10 @@ import path from 'path' import program from 'commander' import walk from 'walk-sync' -const EXCEPTIONS = new Set(['assets/images/site/favicon.ico']) +const EXCEPTIONS = new Set([ + 'assets/images/site/favicon.ico', + 'assets/images/site/apple-touch-icon.png', +]) function isExceptionPath(imagePath) { // We also check for .DS_Store because any macOS user that has opened @@ -20,7 +23,11 @@ function isExceptionPath(imagePath) { // to git anyway thanks to our .DS_Store. // But if we don't make it a valid exception, it can become inconvenient // to run this script locally. - return EXCEPTIONS.has(imagePath) || path.basename('.DS_Store') + return ( + EXCEPTIONS.has(imagePath) || + path.basename(imagePath) === '.DS_Store' || + imagePath.split(path.sep).includes('early-access') + ) } program @@ -61,7 +68,7 @@ async function main(opts) { root, Object.assign( { - globs: ['!**/*.+(png|csv|graphql|json|svg)'], + globs: ['!**/*.+(png|jpe?g|csv|graphql|json|svg)'], }, walkOptions ) From 5949231d708de6ca338af4953eb41f325ae57416 Mon Sep 17 00:00:00 2001 From: docubot <67483024+docubot@users.noreply.github.com> Date: Wed, 30 Mar 2022 09:15:05 -0700 Subject: [PATCH 2/2] New translation batch for ja (#26468) * Add crowdin translations * Run script/i18n/homogenize-frontmatter.js * Run script/i18n/lint-translation-files.js --check rendering * run script/i18n/reset-files-with-broken-liquid-tags.js --language=ja * run script/i18n/reset-known-broken-translation-files.js * Check in ja CSV report --- .../adding-self-hosted-runners.md | 10 +++--- ...ess-to-self-hosted-runners-using-groups.md | 4 +-- ...and-troubleshooting-self-hosted-runners.md | 2 +- .../removing-self-hosted-runners.md | 10 +++--- ...-your-spending-limit-for-github-actions.md | 2 +- .../about-billing-for-codespaces.md | 22 ++++++------- .../index.md | 2 +- ...managing-spending-limits-for-codespaces.md | 24 +++++++------- .../viewing-your-codespaces-usage.md | 10 +++--- ...your-spending-limit-for-github-packages.md | 2 +- .../about-billing-for-github-accounts.md | 2 +- .../about-billing-for-your-enterprise.md | 32 +++++++++---------- .../about-per-user-pricing.md | 4 +-- ...artifacts-and-logs-in-your-organization.md | 2 +- ...ng-github-actions-for-your-organization.md | 10 +++--- ...shing-source-for-your-github-pages-site.md | 2 +- ...ithub-actions-settings-for-a-repository.md | 14 ++++---- ...ms-for-additional-products-and-features.md | 17 +++++++++- ...nge-retention-period-for-artifacts-logs.md | 2 +- ...-groups-navigate-to-repo-org-enterprise.md | 23 +++++++------ ...osted-runner-navigate-to-org-enterprise.md | 21 ++++++------ ...-runner-navigate-to-repo-org-enterprise.md | 23 +++++++------ .../settings-sidebar-actions-runner-groups.md | 2 -- .../settings-sidebar-actions-runners.md | 1 - .../actions/settings-sidebar-actions.md | 1 - .../settings-ui/settings-actions-general.md | 2 ++ .../settings-actions-runner-groups.md | 5 +++ .../settings-ui/settings-actions-runners.md | 3 ++ .../reusables/billing/email-notifications.md | 2 +- .../enterprise_management_console/actions.md | 4 ++- .../settings-sidebar-actions-general.md | 1 + .../settings-sidebar-actions-runner-groups.md | 1 + .../settings-sidebar-actions-runners.md | 1 + .../organizations/settings-sidebar-actions.md | 1 - .../settings-sidebar-actions-general.md | 1 + .../settings-sidebar-actions-runners.md | 1 + .../repositories/settings-sidebar-actions.md | 5 --- ...nterprise-resolving-and-closing-tickets.md | 4 +-- translations/log/ja-resets.csv | 1 + 39 files changed, 153 insertions(+), 123 deletions(-) delete mode 100644 translations/ja-JP/data/reusables/actions/settings-sidebar-actions-runner-groups.md delete mode 100644 translations/ja-JP/data/reusables/actions/settings-sidebar-actions-runners.md delete mode 100644 translations/ja-JP/data/reusables/actions/settings-sidebar-actions.md create mode 100644 translations/ja-JP/data/reusables/actions/settings-ui/settings-actions-general.md create mode 100644 translations/ja-JP/data/reusables/actions/settings-ui/settings-actions-runner-groups.md create mode 100644 translations/ja-JP/data/reusables/actions/settings-ui/settings-actions-runners.md create mode 100644 translations/ja-JP/data/reusables/organizations/settings-sidebar-actions-general.md create mode 100644 translations/ja-JP/data/reusables/organizations/settings-sidebar-actions-runner-groups.md create mode 100644 translations/ja-JP/data/reusables/organizations/settings-sidebar-actions-runners.md delete mode 100644 translations/ja-JP/data/reusables/organizations/settings-sidebar-actions.md create mode 100644 translations/ja-JP/data/reusables/repositories/settings-sidebar-actions-general.md create mode 100644 translations/ja-JP/data/reusables/repositories/settings-sidebar-actions-runners.md delete mode 100644 translations/ja-JP/data/reusables/repositories/settings-sidebar-actions.md diff --git a/translations/ja-JP/content/actions/hosting-your-own-runners/adding-self-hosted-runners.md b/translations/ja-JP/content/actions/hosting-your-own-runners/adding-self-hosted-runners.md index 061a74de5a06..63109341451d 100644 --- a/translations/ja-JP/content/actions/hosting-your-own-runners/adding-self-hosted-runners.md +++ b/translations/ja-JP/content/actions/hosting-your-own-runners/adding-self-hosted-runners.md @@ -49,14 +49,13 @@ You can set up automation to scale the number of self-hosted runners. For more i {% ifversion fpt or ghec or ghes > 3.3 or ghae-issue-5091 %} {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-settings %} -{% data reusables.actions.settings-sidebar-actions %} -{% data reusables.actions.settings-sidebar-actions-runners-updated %} +{% data reusables.repositories.settings-sidebar-actions-runners %} 1. Click **New self-hosted runner**. {% data reusables.actions.self-hosted-runner-configure %} {% elsif ghae or ghes < 3.4 %} {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-settings %} -{% data reusables.actions.settings-sidebar-actions-runners %} +{% data reusables.repositories.settings-sidebar-actions-runners %} 1. GitHub Insightsの {% ifversion ghes > 3.1 or ghae or ghec %}"ランナー"{% else %}"セルフホストランナー"{% endif %} で、[**Add runner**] をクリックします。 {% data reusables.actions.self-hosted-runner-configure %} @@ -72,14 +71,13 @@ You can set up automation to scale the number of self-hosted runners. For more i {% ifversion fpt or ghec or ghes > 3.3 or ghae-issue-5091 %} {% data reusables.organizations.navigate-to-org %} {% data reusables.organizations.org_settings %} -{% data reusables.actions.settings-sidebar-actions %} -{% data reusables.actions.settings-sidebar-actions-runners-updated %} +{% data reusables.organizations.settings-sidebar-actions-runners %} 1. Click **New runner**. {% data reusables.actions.self-hosted-runner-configure %} {% elsif ghae or ghes < 3.4 %} {% data reusables.organizations.navigate-to-org %} {% data reusables.organizations.org_settings %} -{% data reusables.actions.settings-sidebar-actions-runners %} +{% data reusables.organizations.settings-sidebar-actions-runners %} 1. GitHub Insightsの {% ifversion ghes > 3.1 or ghae %}"Runners", click **Add new**, then click **New runner**.{% elsif ghes < 3.2 %}"Self-hosted runners", click **Add runner**."{% endif %} {% data reusables.actions.self-hosted-runner-configure %} diff --git a/translations/ja-JP/content/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups.md b/translations/ja-JP/content/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups.md index 994979db4234..f4846d9a57c3 100644 --- a/translations/ja-JP/content/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups.md +++ b/translations/ja-JP/content/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups.md @@ -49,7 +49,7 @@ When creating a group, you must choose a policy that defines which repositories{ {% ifversion ghec or ghes > 3.3 or ghae-issue-5091 %} {% data reusables.organizations.navigate-to-org %} {% data reusables.organizations.org_settings %} -{% data reusables.actions.settings-sidebar-actions-runner-groups %} +{% data reusables.organizations.settings-sidebar-actions-runner-groups %} 1. In the "Runner groups" section, click **New runner group**. 1. Enter a name for your runner group. {% data reusables.actions.runner-group-assign-policy-repo %} @@ -66,7 +66,7 @@ When creating a group, you must choose a policy that defines which repositories{ {% elsif ghae or ghes < 3.4 %} {% data reusables.organizations.navigate-to-org %} {% data reusables.organizations.org_settings %} -{% data reusables.actions.settings-sidebar-actions-runners %} +{% data reusables.organizations.settings-sidebar-actions-runner-groups %} 1. Under {% ifversion ghes > 3.1 or ghae %}"Runners"{% elsif ghes < 3.2 %}"Self-hosted runners"{% endif %}, click **Add new**, and then **New group**. ![新しいランナーを追加](/assets/images/help/settings/actions-org-add-runner-group.png) diff --git a/translations/ja-JP/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md b/translations/ja-JP/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md index 95f3f2a9f362..6c596084ba0f 100644 --- a/translations/ja-JP/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md +++ b/translations/ja-JP/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md @@ -23,7 +23,7 @@ shortTitle: Monitor & troubleshoot {% data reusables.actions.self-hosted-runner-management-permissions-required %} {% data reusables.actions.self-hosted-runner-navigate-repo-and-org %} -{% data reusables.actions.settings-sidebar-actions-runners %} +{% data reusables.organizations.settings-sidebar-actions-runners %} 1. Under {% ifversion fpt or ghes > 3.1 or ghae or ghec %}"Runners"{% else %}"Self-hosted runners"{% endif %}, you can view a list of registered runners, including the runner's name, labels, and status. The status can be one of the following: diff --git a/translations/ja-JP/content/actions/hosting-your-own-runners/removing-self-hosted-runners.md b/translations/ja-JP/content/actions/hosting-your-own-runners/removing-self-hosted-runners.md index 256a28c46d3f..02ba0c977be2 100644 --- a/translations/ja-JP/content/actions/hosting-your-own-runners/removing-self-hosted-runners.md +++ b/translations/ja-JP/content/actions/hosting-your-own-runners/removing-self-hosted-runners.md @@ -32,14 +32,13 @@ shortTitle: Remove self-hosted runners {% ifversion fpt or ghec or ghes > 3.3 or ghae-issue-5091 %} {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-settings %} -{% data reusables.actions.settings-sidebar-actions %} -{% data reusables.actions.settings-sidebar-actions-runners-updated %} +{% data reusables.repositories.settings-sidebar-actions-runners %} {% data reusables.actions.settings-sidebar-actions-runner-selection %} {% data reusables.actions.self-hosted-runner-removing-a-runner-updated %} {% elsif ghae or ghes < 3.4 %} {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-settings %} -{% data reusables.actions.settings-sidebar-actions-runners %} +{% data reusables.repositories.settings-sidebar-actions-runners %} {% data reusables.actions.self-hosted-runner-removing-a-runner %} {% endif %} @@ -59,14 +58,13 @@ Organizationからセルフホストランナーを削除するには、Organiza {% ifversion fpt or ghes > 3.3 or ghec %} {% data reusables.organizations.navigate-to-org %} {% data reusables.organizations.org_settings %} -{% data reusables.actions.settings-sidebar-actions %} -{% data reusables.actions.settings-sidebar-actions-runners-updated %} +{% data reusables.organizations.settings-sidebar-actions-runners %} {% data reusables.actions.settings-sidebar-actions-runner-selection %} {% data reusables.actions.self-hosted-runner-removing-a-runner-updated %} {% elsif ghes < 3.4 or ghae %} {% data reusables.organizations.navigate-to-org %} {% data reusables.organizations.org_settings %} -{% data reusables.actions.settings-sidebar-actions-runners %} +{% data reusables.organizations.settings-sidebar-actions-runners %} {% data reusables.actions.self-hosted-runner-removing-a-runner %} {% endif %} diff --git a/translations/ja-JP/content/billing/managing-billing-for-github-actions/managing-your-spending-limit-for-github-actions.md b/translations/ja-JP/content/billing/managing-billing-for-github-actions/managing-your-spending-limit-for-github-actions.md index 53a4c42664ca..dbfb955e9720 100644 --- a/translations/ja-JP/content/billing/managing-billing-for-github-actions/managing-your-spending-limit-for-github-actions.md +++ b/translations/ja-JP/content/billing/managing-billing-for-github-actions/managing-your-spending-limit-for-github-actions.md @@ -64,5 +64,5 @@ Enterprise アカウントの {% data variables.product.prodname_actions %} の {% data reusables.dotcom_billing.update-spending-limit %} -## Managing usage and spending limit email notifications +## 使用状況の管理と利用上限のメール通知 {% data reusables.billing.email-notifications %} diff --git a/translations/ja-JP/content/billing/managing-billing-for-github-codespaces/about-billing-for-codespaces.md b/translations/ja-JP/content/billing/managing-billing-for-github-codespaces/about-billing-for-codespaces.md index 454259a34d86..52e1acfe39a2 100644 --- a/translations/ja-JP/content/billing/managing-billing-for-github-codespaces/about-billing-for-codespaces.md +++ b/translations/ja-JP/content/billing/managing-billing-for-github-codespaces/about-billing-for-codespaces.md @@ -15,7 +15,7 @@ topics: ## {% data variables.product.prodname_codespaces %}の価格 -{% data variables.product.prodname_codespaces %} usage is billed for all accounts on the Team and Enterprise plans, and does not include any entitlements. 現在の処、個人のアカウントは{% data variables.product.prodname_codespaces %}の利用に対して課金されません。 +{% data variables.product.prodname_codespaces %} usage is billed for all accounts on the Team and Enterprise plans, and does not include any entitlements. 現在のところ、個人のアカウントは{% data variables.product.prodname_codespaces %}の利用に対して課金されません。 {% data variables.product.prodname_codespaces %}の利用については、以下の表に示す計測単位に従って課金されます。 @@ -54,22 +54,22 @@ Microsoft Enterprise Agreement を通じて {% data variables.product.prodname_e {% data reusables.codespaces.exporting-changes %} -## Limiting the choice of machine types +## マシンタイプの選択の制限 -The type of machine a user chooses when they create a codespace affects the per-minute charge for that codespace, as shown above. +ユーザがcodespaceを作成する際に選択するマシンタイプは、上にあるように、そのcodespaceに対する分ごとの課金に影響します。 -Organization owners can create a policy to restrict the machine types that are available to users. For more information, see "[Restricting access to machine types](/codespaces/managing-codespaces-for-your-organization/restricting-access-to-machine-types)." +Organizationオーナーは、ユーザが利用できるマシンタイプを制限するポリシーを作成できます。 詳しい情報については「[マシンタイプへのアクセス制限](/codespaces/managing-codespaces-for-your-organization/restricting-access-to-machine-types)」を参照してください。 -## How billing is handled for forked repositories +## フォークされたリポジトリでの支払いの扱い -{% data variables.product.prodname_codespaces %} can only be used in organizations where a billable owner has been defined. To incur charges to the organization, the user must be a member or collaborator, otherwise they cannot create a codespace. +{% data variables.product.prodname_codespaces %}は、支払いできるオーナーが定義されたOrganizationでのみ利用できます。 Organizationに課金をするには、ユーザはメンバーもしくはコラボレータでなければなりません。そうでなければユーザはcodespaceを作成できません。 -For example, a user in a private organization can fork a repository within that organization, and can subsequently use a codespace billed to the organization; this is because the organization is the owner of the parent repository, which can remove the user's access, the forked repository, and the codespace. +たとえば、プライベートなOrganizationのユーザは、そのOrganization内のリポジトリをフォークし、その後Organizationに課金されるcodespaceを使うことができます。これはそのOrganizationが、ユーザのアクセス、フォークされたリポジトリ、codespaceを削除できる親リポジトリのオーナーだからです。 -## How billing is handled when a repository is transferred +## リポジトリが移譲されたときの支払いの扱い -Usage is billed and reported on every hour. As such, you pay for any usage when a repository is within your organization. When a repository is transferred out of your organization, any codespaces in that repository are removed as part of the transfer process. +使用量は1時間ごとに課金され、報告されます。 そのため、リポジトリがOrganization内にあれば、あらゆる使用に対して支払いをすることになります。 リポジトリがOrganization外に移譲されると、そのリポジトリ内のすべてのcodespaceは移譲のプロセスの一部として削除されます。 -## What happens when users are removed +## ユーザが削除されたときに生じること -If a user is removed from an organization or repository, their codespaces are automatically deleted. +Organizationもしくはリポジトリからユーザが削除されると、そのユーザのcodespaceは自動的に削除されます。 diff --git a/translations/ja-JP/content/billing/managing-billing-for-github-codespaces/index.md b/translations/ja-JP/content/billing/managing-billing-for-github-codespaces/index.md index 560fa69d548f..8fcb5b0d2cc1 100644 --- a/translations/ja-JP/content/billing/managing-billing-for-github-codespaces/index.md +++ b/translations/ja-JP/content/billing/managing-billing-for-github-codespaces/index.md @@ -1,5 +1,5 @@ --- -title: Managing billing for GitHub Codespaces +title: GitHub Codespacesの支払いの管理 shortTitle: Codespaces intro: '{% data variables.product.prodname_codespaces %} の利用状況を確認し、利用上限を設定することができます。' versions: diff --git a/translations/ja-JP/content/billing/managing-billing-for-github-codespaces/managing-spending-limits-for-codespaces.md b/translations/ja-JP/content/billing/managing-billing-for-github-codespaces/managing-spending-limits-for-codespaces.md index 457ef30bda1b..b3f89e3ea322 100644 --- a/translations/ja-JP/content/billing/managing-billing-for-github-codespaces/managing-spending-limits-for-codespaces.md +++ b/translations/ja-JP/content/billing/managing-billing-for-github-codespaces/managing-spending-limits-for-codespaces.md @@ -1,5 +1,5 @@ --- -title: Managing spending limits for Codespaces +title: Codespacesの利用制限の管理 intro: '{% data variables.product.prodname_codespaces %} の使用に対して利用上限を設定できます。' versions: fpt: '*' @@ -20,13 +20,13 @@ shortTitle: 利用上限 {% data reusables.codespaces.codespaces-spending-limit-requirement %} -Once you've reached your spending limit, your organization or repository will no longer be able to create new codespaces, and won't be able to start existing codespaces. Any existing codespaces that are still running will not be shutdown; if you don't change the spending limit, you will not be charged for the amount that exceeds the limit. +使用上限に達すると、Organizationあるいはリポジトリではそれ以上新しいcodespaceを作成できなくなり、既存のcodespaceも起動できなくなります。 まだ実行中の既存のcodespaceはシャットダウンされません。使用上限を変更しなければ、上限を超えた分に対する支払いは生じません。 {% data variables.product.prodname_codespaces %}の価格に関する詳細な情報については、「[{% data variables.product.prodname_codespaces %}の支払いについて](/billing/managing-billing-for-github-codespaces/about-billing-for-codespaces)」を参照してください。 {% ifversion ghec %} -## Using your Azure Subscription -If you purchased {% data variables.product.prodname_enterprise %} through a Microsoft Enterprise Agreement, you can connect your Azure Subscription ID to your enterprise account to enable and pay for {% data variables.product.prodname_codespaces %} usage. 詳しい情報については、「[Azure サブスクリプションを Enterprise に接続する](/billing/managing-billing-for-your-github-account/connecting-an-azure-subscription-to-your-enterprise)」を参照してください。 +## Azureサブスクリプションの利用 +Microsoft Enterprise Agreement を通じて {% data variables.product.prodname_enterprise %} を購入した場合、Azure サブスクリプションID をEnterpriseアカウントに接続して、 {% data variables.product.prodname_codespaces %} の使用を有効にして支払うことができます。 詳しい情報については、「[Azure サブスクリプションを Enterprise に接続する](/billing/managing-billing-for-your-github-account/connecting-an-azure-subscription-to-your-enterprise)」を参照してください。 {% endif %} ## Organizationの {% data variables.product.prodname_codespaces %} に対する利用上限を管理する @@ -45,22 +45,22 @@ Enterprise アカウントの {% data variables.product.prodname_codespaces %} {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.billing-tab %} -1. Above "{% data variables.product.prodname_codespaces %} monthly usage", click **Spending Limit**. ![利用上限タブ](/assets/images/help/settings/spending-limit-tab-enterprise.png) +1. ""[{% data variables.product.prodname_codespaces %} monthly usage]"の上で、**Spending Limit(利用上限)**をクリックしてください。 ![利用上限タブ](/assets/images/help/settings/spending-limit-tab-enterprise.png) {% data reusables.dotcom_billing.monthly-spending-limit %} {% data reusables.dotcom_billing.update-spending-limit %} -## Exporting changes when you have reached your spending limit +## 利用上限に達した際の変更のエクスポート {% data reusables.codespaces.exporting-changes %} -## Managing usage and spending limit email notifications +## 使用状況の管理と利用上限のメール通知 -Email notifications are sent to account owners and billing managers when spending reaches 50%, 75%, 90%, and 100% of your account's spending limit. +メール通知は、利用量がアカウントの利用上限の50%、75%、90%、100%に達したときに、アカウントのオーナーと支払いマネージャーに送信されます。 -You can disable these notifications anytime by navigating to the bottom of the **Spending Limit** page. +これらの通知は、**Spending Limit(利用上限)** ページの下部にアクセスしていつでも無効化できます。 -![Screenshot of the billing email notification settings](/assets/images/help/billing/codespaces-spending-limit-notifications.png) +![支払いのメール通知設定のスクリーンショット](/assets/images/help/billing/codespaces-spending-limit-notifications.png) ## 参考リンク -- "[Restricting access to machine types](/codespaces/managing-codespaces-for-your-organization/restricting-access-to-machine-types)" -- "[Managing billing for Codespaces in your organization](/codespaces/managing-codespaces-for-your-organization/managing-billing-for-codespaces-in-your-organization)" +- 「[マシンタイプへのアクセスの制限](/codespaces/managing-codespaces-for-your-organization/restricting-access-to-machine-types)」 +- 「[Organization内のCodespacesの支払いの管理](/codespaces/managing-codespaces-for-your-organization/managing-billing-for-codespaces-in-your-organization)」 diff --git a/translations/ja-JP/content/billing/managing-billing-for-github-codespaces/viewing-your-codespaces-usage.md b/translations/ja-JP/content/billing/managing-billing-for-github-codespaces/viewing-your-codespaces-usage.md index 5eead00e634a..255f6603bdc0 100644 --- a/translations/ja-JP/content/billing/managing-billing-for-github-codespaces/viewing-your-codespaces-usage.md +++ b/translations/ja-JP/content/billing/managing-billing-for-github-codespaces/viewing-your-codespaces-usage.md @@ -1,7 +1,7 @@ --- -title: Viewing your Codespaces usage -shortTitle: Viewing your usage -intro: 'You can view the compute minutes and storage used by {% data variables.product.prodname_codespaces %}.' +title: Codespacesの使用状況の表示 +shortTitle: 使用状況の表示 +intro: '{% data variables.product.prodname_codespaces %}によるコンピュートの分とストレージを見ることができます。' permissions: 'To manage billing for Codespaces for an organization, you must be an organization owner or a billing manager.' product: '{% data reusables.gated-features.codespaces %}' versions: @@ -15,7 +15,7 @@ topics: ## Organizationの {% data variables.product.prodname_codespaces %} の使用状況を表示する -Organization については、Organization のオーナーと支払いマネージャーが {% data variables.product.prodname_codespaces %} の使用状況を管理できます。 For organizations managed by an enterprise account, the organization owners can view {% data variables.product.prodname_codespaces %} usage in the organization billing page, and enterprise admins can view the usage for the entire enterprise. +Organization については、Organization のオーナーと支払いマネージャーが {% data variables.product.prodname_codespaces %} の使用状況を管理できます。 Enterpriseアカウントが管理しているOrganizationでは、OrganizationのオーナーはOrganizationの支払いページで{% data variables.product.prodname_codespaces %}の使用状況を見ることができ、Enterpriseの管理者はEnterprise全体の使用状況を見ることができます。 {% data reusables.organizations.billing-settings %} {% data reusables.dotcom_billing.codespaces-minutes %} @@ -28,4 +28,4 @@ Enterprise アカウントについては、Enterprise オーナーと支払い {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.billing-tab %} -1. Under "{% data variables.product.prodname_codespaces %}", view the usage details of each organization in your enterprise account. +1. 「{% data variables.product.prodname_codespaces %}」の下で、Enterpriseアカウント内の各Organizationの使用状況の詳細を見ます。 diff --git a/translations/ja-JP/content/billing/managing-billing-for-github-packages/managing-your-spending-limit-for-github-packages.md b/translations/ja-JP/content/billing/managing-billing-for-github-packages/managing-your-spending-limit-for-github-packages.md index 1bebbcdbc8a6..105acc7ccc06 100644 --- a/translations/ja-JP/content/billing/managing-billing-for-github-packages/managing-your-spending-limit-for-github-packages.md +++ b/translations/ja-JP/content/billing/managing-billing-for-github-packages/managing-your-spending-limit-for-github-packages.md @@ -64,5 +64,5 @@ Enterprise アカウントの {% data variables.product.prodname_registry %} に {% data reusables.dotcom_billing.monthly-spending-limit %} {% data reusables.dotcom_billing.update-spending-limit %} -## Managing usage and spending limit email notifications +## 使用状況の管理と利用上限のメール通知 {% data reusables.billing.email-notifications %} diff --git a/translations/ja-JP/content/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts.md b/translations/ja-JP/content/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts.md index f7d8ea942727..e642a87edbaa 100644 --- a/translations/ja-JP/content/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts.md +++ b/translations/ja-JP/content/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts.md @@ -24,7 +24,7 @@ topics: shortTitle: 支払いについて --- -For more information about the products available for your account, see "[{% data variables.product.prodname_dotcom %}'s products](/articles/github-s-products)." 各製品の料金と機能の全リストは <{% data variables.product.pricing_url %}> に掲載されています。 {% data variables.product.product_name %} はカスタムの製品やプランは提供しません。 +アカウントで利用できる製品に関する詳しい情報については「[{% data variables.product.prodname_dotcom %}の製品](/articles/github-s-products)」を参照してください。 各製品の料金と機能の全リストは <{% data variables.product.pricing_url %}> に掲載されています。 {% data variables.product.product_name %} はカスタムの製品やプランは提供しません。 支払いは月単位あるいは年単位を選択でき、プランのアップグレードやダウングレードはいつでもできます。 詳細は「[ {% data variables.product.prodname_dotcom %} の支払いを管理する](/articles/managing-billing-for-your-github-account)」を参照してください。 diff --git a/translations/ja-JP/content/billing/managing-billing-for-your-github-account/about-billing-for-your-enterprise.md b/translations/ja-JP/content/billing/managing-billing-for-your-github-account/about-billing-for-your-enterprise.md index 9661fc1ada21..df96487115bb 100644 --- a/translations/ja-JP/content/billing/managing-billing-for-your-github-account/about-billing-for-your-enterprise.md +++ b/translations/ja-JP/content/billing/managing-billing-for-your-github-account/about-billing-for-your-enterprise.md @@ -20,26 +20,26 @@ shortTitle: Billing for your enterprise {% ifversion ghae %} -{% data reusables.github-ae.about-billing %} 1日に1度、{% data variables.product.prodname_dotcom %} は、Enterprise のライセンスを持つユーザ数をカウントします。 {% data variables.product.company_short %} は、ユーザがその日に {% data variables.product.prodname_ghe_managed %} にログインしたかどうかに関係なく、ライセンスされたユーザごとに請求します。 +{% data reusables.github-ae.about-billing %} Once per day, {% data variables.product.prodname_dotcom %} will count the number of users with a license for your enterprise. {% data variables.product.company_short %} bills you for each licensed user regardless of whether the user logged into {% data variables.product.prodname_ghe_managed %} that day. -商業地域の場合、ユーザー1人あたりの1日あたりの価格は $ 1.2580645161 です。 31日間の場合、各ユーザの月額料金は 39 ドルです。 日数が少ない月の場合、月額料金は低くなります。 各支払い月は、カレンダー月の初日の固定の時刻に開始されます。 +For commercial regions, the price per user per day is $1.2580645161. For 31-day months, the monthly cost for each user is $39. For months with fewer days, the monthly cost is lower. Each billing month begins at a fixed time on the first day of the calendar month. -月の半ばにライセンスユーザを追加した場合、そのユーザはライセンスを付与された日からカウントされます。 ライセンスユーザを削除した場合、そのユーザは削除された月の末までカウントされます。 したがって、月の途中でユーザを追加し、その後、同じ月にユーザを削除した場合、そのユーザは、ユーザが追加された日から月末までカウントされます。 同じ月に、ユーザを削除して再度追加した場合、追加料金は発生しません。 +If you add a licensed user mid-month, that user will only be included in the count for the days they have a license. When you remove a licensed user, that user will remain in the count until the end of that month. Therefore, if you add a user mid-month and later remove the user in the same month, the user will be included in the count from the day the user was added through the end of the month. There is no additional cost if you re-add a user during the same month the user was removed. -たとえば、異なる日付でライセンスを付与した場合のユーザ料金は次のとおりです。 +For example, here are the costs for users with licenses on different dates. -| ユーザ | ライセンスされた日 | カウント日数 | 料金 | -| --------- | ------------------------------- | ------ | ------ | -| @octocat | 1月1日~1月31日 | 31 | $39 | -| @robocat | 2月1日~2月28日 | 28 | $35.23 | -| @devtocat | 1月15日~1月31日 | 17 | $21.39 | -| @doctocat | 1月1日~1月15日 | 31 | $39 | -| @prodocat | 1月7日~1月15日 | 25 | $31.45 | -| @monalisa | 1月1日~1月7日、
1月15日~1月31日 | 31 | $39 | +User | License dates | Counted days | Cost +---- | ------------ | ------- | ----- +@octocat | January 1 - January 31 | 31 | $39 +@robocat | February 1 - February 28 | 28 | $35.23 +@devtocat | January 15 - January 31 | 17 | $21.39 +@doctocat | January 1 - January 15 | 31 | $39 +@prodocat | January 7 - January 15 | 25 | $31.45 +@monalisa | January 1 - January 7,
January 15 - January 31 | 31 | $39 -{% data variables.product.prodname_ghe_managed %} のインスタンスごとの最小ユーザ数は 500 です。 {% data variables.product.company_short %} は、同日にライセンスを付与されたユーザが 500 未満の場合でも、インスタンスごとに最低 500 ユーザ分の料金を請求します。 +{% data variables.product.prodname_ghe_managed %} has a 500-user minimum per instance. {% data variables.product.company_short %} bills you for a minimum of 500 users per instance, even if there are fewer than 500 users with a license that day. -[Azure アカウントポータル](https://portal.azure.com)で現在の使用状況を確認できます。 +You can see your current usage in your [Azure account portal](https://portal.azure.com). {% elsif ghec or ghes %} @@ -56,7 +56,7 @@ Each user on {% data variables.product.product_location %} consumes a seat on yo {% data reusables.billing.about-invoices-for-enterprises %} For more information about {% ifversion ghes %}licensing, usage, and invoices{% elsif ghec %}usage and invoices{% endif %}, see the following{% ifversion ghes %} in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}.{% endif %} {%- ifversion ghes %} -- [ユーザごとの価格付けについて](/enterprise-cloud@latest/billing/managing-billing-for-your-github-account/about-per-user-pricing) +- "[About per-user pricing](/enterprise-cloud@latest/billing/managing-billing-for-your-github-account/about-per-user-pricing)" {%- endif %} - "[Viewing the subscription and usage for your enterprise account]({% ifversion ghes %}/enterprise-cloud@latest{% endif %}/billing/managing-billing-for-your-github-account/viewing-the-subscription-and-usage-for-your-enterprise-account)" - "[Managing invoices for your enterprise]({% ifversion ghes %}/enterprise-cloud@latest{% endif %}/billing/managing-billing-for-your-github-account/managing-invoices-for-your-enterprise)" @@ -97,7 +97,7 @@ For more information about outside collaborators, see "[Adding outside collabora {% endif %} -## 参考リンク +## Further reading - "[About enterprise accounts](/admin/overview/about-enterprise-accounts)"{% ifversion ghec or ghes %} - "[About licenses for GitHub Enterprise](/billing/managing-your-license-for-github-enterprise/about-licenses-for-github-enterprise)"{% endif %} diff --git a/translations/ja-JP/content/billing/managing-billing-for-your-github-account/about-per-user-pricing.md b/translations/ja-JP/content/billing/managing-billing-for-your-github-account/about-per-user-pricing.md index ec182f699318..3a44e9634662 100644 --- a/translations/ja-JP/content/billing/managing-billing-for-your-github-account/about-per-user-pricing.md +++ b/translations/ja-JP/content/billing/managing-billing-for-your-github-account/about-per-user-pricing.md @@ -1,6 +1,6 @@ --- title: ユーザごとの価格付けについて -intro: 'With per-user pricing, organizations {% ifversion ghec %}and enterprises {% endif %}pay based on team size to access advanced collaboration and management tools for teams, and optionally, security, compliance, and deployment controls.' +intro: 'ユーザごとの価格付けでは、Organization{% ifversion ghec %}及びEnterprise{% endif %}は Teamのための高度なコラボレーションと管理のツールへのアクセス、そして場合によってはセキュリティ、コンプライアンス、デプロイメントの制御のために、Teamのサイズに基づいて支払いを行います。' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/about-per-user-pricing - /articles/about-per-user-pricing @@ -18,7 +18,7 @@ topics: ## ユーザごとの価格付けについて -New organizations on {% data variables.product.prodname_dotcom_the_website %} can build public and open-source projects with {% data variables.product.prodname_free_team %}, or upgrade to a paid product with per-user pricing. For more information, see "[{% data variables.product.company_short %}'s products](/get-started/learning-about-github/githubs-products)" and "[Upgrading your {% data variables.product.prodname_dotcom %} subscription](/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription)." +{% data variables.product.prodname_dotcom_the_website %}上の新しいOrganizationは、{% data variables.product.prodname_free_team %}でパブリック及びオープンソースのプロジェクトを構築するか、ユーザごとの価格付けの有料製品にアップグレードすることができます。 詳しい情報については「[{% data variables.product.company_short %}の製品](/get-started/learning-about-github/githubs-products)」及び「[{% data variables.product.prodname_dotcom %}プランのアップグレード](/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription)」を参照してください。 {% ifversion ghec %}Per-user pricing applies to all organizations that belong to your enterprise on {% data variables.product.prodname_dotcom_the_website %}, and to organizations using {% data variables.product.prodname_ghe_cloud %} that are not part of an enterprise. Each{% elsif fpt %}Per-user pricing means that each{% endif %} billing cycle, {% data variables.product.company_short %} charges for each member or outside collaborator within your organization{% ifversion ghec %} or enterprise{% endif %}. You also pay for each pending member or outside collaborator who has not yet accepted an invitation. {% data variables.product.company_short %} does not charge for members with the billing manager role{% ifversion ghec %}, or for enterprise owners who are not also a member of at least one organization in the enterprise{% endif %}. For more information, see {% ifversion ghec %}"[Roles in an enterprise](/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise)" or {% endif %}{% ifversion fpt or ghec %}"[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)."{% endif %} diff --git a/translations/ja-JP/content/organizations/managing-organization-settings/configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-organization.md b/translations/ja-JP/content/organizations/managing-organization-settings/configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-organization.md index 0165ce479228..5b48afadf30a 100644 --- a/translations/ja-JP/content/organizations/managing-organization-settings/configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-organization.md +++ b/translations/ja-JP/content/organizations/managing-organization-settings/configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-organization.md @@ -20,5 +20,5 @@ shortTitle: 保持期間の設定 {% data reusables.organizations.navigate-to-org %} {% data reusables.organizations.org_settings %} -{% data reusables.organizations.settings-sidebar-actions %} +{% data reusables.organizations.settings-sidebar-actions-general %} {% data reusables.actions.change-retention-period-for-artifacts-logs %} diff --git a/translations/ja-JP/content/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization.md b/translations/ja-JP/content/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization.md index e8ac13e77780..58ac8d1c5d0a 100644 --- a/translations/ja-JP/content/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization.md +++ b/translations/ja-JP/content/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization.md @@ -39,7 +39,7 @@ Organization のワークフローをすべて無効にすることも、Organiz {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} -{% data reusables.organizations.settings-sidebar-actions %} +{% data reusables.organizations.settings-sidebar-actions-general %} 1. [**Policies**] でオプションを選択します。 ![この Organization に対するアクションポリシーを設定する](/assets/images/help/organizations/actions-policy.png) 1. [**Save**] をクリックします。 @@ -49,7 +49,7 @@ Organization のワークフローをすべて無効にすることも、Organiz {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} -{% data reusables.organizations.settings-sidebar-actions %} +{% data reusables.organizations.settings-sidebar-actions-general %} 1. [**Policies**] で [**Allow select actions**] を選択し、必要なアクションをリストに追加します。 {%- ifversion ghes %} ![許可リストにアクションを追加する](/assets/images/help/organizations/actions-policy-allow-list.png) @@ -67,7 +67,7 @@ Organizationのこの動作は、以下の手順で設定できます。 この {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} -{% data reusables.organizations.settings-sidebar-actions %} +{% data reusables.organizations.settings-sidebar-actions-general %} {% data reusables.actions.workflows-from-public-fork-setting %} {% data reusables.actions.workflow-run-approve-link %} @@ -86,7 +86,7 @@ Organizationのこの動作は、以下の手順で設定できます。 この {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} -{% data reusables.organizations.settings-sidebar-actions %} +{% data reusables.organizations.settings-sidebar-actions-general %} {% data reusables.actions.private-repository-forks-configure %} {% endif %} @@ -104,7 +104,7 @@ Organizationもしくはリポジトリの設定で、`GITHUB_TOKEN`のデフォ {% data reusables.profile.access_profile %} {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} -{% data reusables.organizations.settings-sidebar-actions %} +{% data reusables.organizations.settings-sidebar-actions-general %} 1. [**Workflow permissions**]の下で、`GITHUB_TOKEN`にすべてのスコープに対する読み書きアクセスを持たせたいか、あるいは`contents`スコープに対する読み取りアクセスだけを持たせたいかを選択してください。 ![このOrganizationのGITHUB_TOKENの権限を設定](/assets/images/help/settings/actions-workflow-permissions-organization.png) 1. **Save(保存)**をクリックして、設定を適用してください。 {% endif %} diff --git a/translations/ja-JP/content/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site.md b/translations/ja-JP/content/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site.md index 5e931e48624f..6b64409e5dd1 100644 --- a/translations/ja-JP/content/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site.md +++ b/translations/ja-JP/content/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site.md @@ -41,7 +41,7 @@ If you choose the `docs` folder on any branch as your publishing source, then la {% ifversion fpt %} -Your {% data variables.product.prodname_pages %} site will always be deployed with a {% data variables.product.prodname_actions %} workflow run, even if you've configured your {% data variables.product.prodname_pages %} site to be built using a different CI tool. Most external CI workflows "deploy" to GitHub Pages by committing the build output to the `gh-pages` branch of the repository, and typically include a `.nojekyll` file. When this happens, the {% data variables.product.prodname_actions %} worfklow will detect the state that the branch does not need a build step, and will execute only the steps necessary to deploy the site to {% data variables.product.prodname_pages %} servers. +Your {% data variables.product.prodname_pages %} site will always be deployed with a {% data variables.product.prodname_actions %} workflow run, even if you've configured your {% data variables.product.prodname_pages %} site to be built using a different CI tool. Most external CI workflows "deploy" to GitHub Pages by committing the build output to the `gh-pages` branch of the repository, and typically include a `.nojekyll` file. When this happens, the {% data variables.product.prodname_actions %} workflow will detect the state that the branch does not need a build step, and will execute only the steps necessary to deploy the site to {% data variables.product.prodname_pages %} servers. To find potential errors with either the build or deployment, you can check the workflow run for your {% data variables.product.prodname_pages %} site by reviewing your repository's workflow runs. For more information, see "[Viewing workflow run history](/actions/monitoring-and-troubleshooting-workflows/viewing-workflow-run-history)." For more information about how to re-run the workflow in case of an error, see "[Re-running workflows and jobs](/actions/managing-workflow-runs/re-running-workflows-and-jobs)." diff --git a/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository.md b/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository.md index 14a2c2f08bda..94fb556aba44 100644 --- a/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository.md +++ b/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository.md @@ -44,7 +44,7 @@ shortTitle: Manage GitHub Actions settings {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-settings %} -{% data reusables.repositories.settings-sidebar-actions %} +{% data reusables.repositories.settings-sidebar-actions-general %} 1. [**Actions permissions**] で、オプションを選択します。 ![この Organization に対するアクションポリシーを設定する](/assets/images/help/repository/actions-policy.png) @@ -57,7 +57,7 @@ shortTitle: Manage GitHub Actions settings {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-settings %} -{% data reusables.repositories.settings-sidebar-actions %} +{% data reusables.repositories.settings-sidebar-actions-general %} 1. [**Actions permissions**] で [**Allow select actions**] を選択し、必要なアクションをリストに追加します。 {%- ifversion ghes %} @@ -77,7 +77,7 @@ You can configure this behavior for a repository using the procedure below. Modi {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-settings %} -{% data reusables.repositories.settings-sidebar-actions %} +{% data reusables.repositories.settings-sidebar-actions-general %} {% data reusables.actions.workflows-from-public-fork-setting %} {% data reusables.actions.workflow-run-approve-link %} @@ -95,7 +95,7 @@ If a policy is disabled for an {% ifversion ghec or ghae or ghes %}enterprise or {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-settings %} -{% data reusables.repositories.settings-sidebar-actions %} +{% data reusables.repositories.settings-sidebar-actions-general %} {% data reusables.actions.private-repository-forks-configure %} {% ifversion fpt or ghes > 3.1 or ghae or ghec %} @@ -111,7 +111,7 @@ The default permissions can also be configured in the organization settings. If {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-settings %} -{% data reusables.repositories.settings-sidebar-actions %} +{% data reusables.repositories.settings-sidebar-actions-general %} 1. [**Workflow permissions**]の下で、`GITHUB_TOKEN`にすべてのスコープに対する読み書きアクセスを持たせたいか、あるいは`contents`スコープに対する読み取りアクセスだけを持たせたいかを選択してください。 ![Set GITHUB_TOKEN permissions for this repository](/assets/images/help/settings/actions-workflow-permissions-repository.png) @@ -128,7 +128,7 @@ You can use the steps below to configure whether {% if internal-actions%}actions 1. On {% data variables.product.prodname_dotcom %}, navigate to the main page of the internal repository. 1. Under your repository name, click {% octicon "gear" aria-label="The gear icon" %} **Settings**. -{% data reusables.repositories.settings-sidebar-actions %} +{% data reusables.repositories.settings-sidebar-actions-general %} 1. Under **Access**, choose one of the access settings: {% ifversion ghes > 3.4 or ghae-issue-6090 or ghec %}![Set the access to Actions components](/assets/images/help/settings/actions-access-settings.png){% else %}![Set the access to Actions components](/assets/images/enterprise/3.4/actions-access-settings.png){% endif %} @@ -151,5 +151,5 @@ You can use the steps below to configure whether {% if internal-actions%}actions {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-settings %} -{% data reusables.repositories.settings-sidebar-actions %} +{% data reusables.repositories.settings-sidebar-actions-general %} {% data reusables.actions.change-retention-period-for-artifacts-logs %} diff --git a/translations/ja-JP/content/site-policy/github-terms/github-terms-for-additional-products-and-features.md b/translations/ja-JP/content/site-policy/github-terms/github-terms-for-additional-products-and-features.md index 837cc823e29d..426b3845f2b2 100644 --- a/translations/ja-JP/content/site-policy/github-terms/github-terms-for-additional-products-and-features.md +++ b/translations/ja-JP/content/site-policy/github-terms/github-terms-for-additional-products-and-features.md @@ -37,8 +37,23 @@ Actions and any elements of the Actions product or service may not be used in vi - ユーザに与えるメリットと釣り合わない負荷をサーバーにかける行為 (たとえば、Actionsをコンテンツ配信ネットワークやサーバーレスアプリケーションの一部として利用してはなりません。ただし、メリットが低くても、負荷も低い場合は問題ありません。)、 - if using GitHub-hosted runners, any other activity unrelated to the production, testing, deployment, or publication of the software project associated with the repository where GitHub Actions are used. -このような使用制限違反や、GitHubアクションの悪用を防ぐために、GitHubはGitHubアクションの使用を監視する場合があります。 GitHub Actionsを不正利用した場合には、ジョブが停止されたり、GitHub Actionsの使用が制限されたり、本「利用規約」を侵害するような方法でActionsを実行するために作成されたリポジトリが無効になったりすることもあります。 +このような使用制限違反や、GitHubアクションの悪用を防ぐために、GitHubはGitHubアクションの使用を監視する場合があります。 Misuse of GitHub Actions may result in termination of jobs, restrictions in your ability to use GitHub Actions, disabling of repositories created to run Actions in a way that violates these Terms, or in some cases, suspension or termination of your GitHub account. +*Use for Development and Testing* + +You may only access and use GitHub Actions to develop and test your application(s). Only one licensed user may access a virtual machine provided by Actions at any time. + +*Authorized Developer* + +You appoint GitHub as your authorized developer with respect to Apple software included in Actions. GitHub is responsible for complying with the terms for any such software included in Actions and will keep confidential any confidential information of Apple accessed as part of Actions. + +*Third Party Repository Service Access* + +If you grant GitHub access to your third-party repository service account(s), you authorize GitHub to scan the account(s), including the contents of your Public and Private Repositories, for purposes of providing GitHub Actions. + +*Self-Hosted Runners on GitHub Actions* + +If you use self-hosted runners, you have the ability to turn off automatic updates but GitHub reserves the right to override your choice for critical security updates. ## Advanced Security Advanced Security ライセンスを取得しているお客様に対して、GitHub は追加セキュリティ機能を提供しています。 追加機能にはコードスキャン、シークレットスキャン、依存関係レビューが含まれます。 詳細は [Advanced Security のドキュメント](/github/getting-started-with-github/about-github-advanced-security)をご覧ください。 diff --git a/translations/ja-JP/data/reusables/actions/change-retention-period-for-artifacts-logs.md b/translations/ja-JP/data/reusables/actions/change-retention-period-for-artifacts-logs.md index 7ca7055d1fac..cb489d5a7778 100644 --- a/translations/ja-JP/data/reusables/actions/change-retention-period-for-artifacts-logs.md +++ b/translations/ja-JP/data/reusables/actions/change-retention-period-for-artifacts-logs.md @@ -1,2 +1,2 @@ -1. **Artifact and log retention duration(成果物とログの保持期間)**の下で、新しい値を入力してください。 +1. Under **Artifact and log retention**, enter a new value. 1. **Save(保存)**をクリックして、変更を適用してください。 diff --git a/translations/ja-JP/data/reusables/actions/self-hosted-runner-groups-navigate-to-repo-org-enterprise.md b/translations/ja-JP/data/reusables/actions/self-hosted-runner-groups-navigate-to-repo-org-enterprise.md index 2eb1fcc98b95..4819bd92eb97 100644 --- a/translations/ja-JP/data/reusables/actions/self-hosted-runner-groups-navigate-to-repo-org-enterprise.md +++ b/translations/ja-JP/data/reusables/actions/self-hosted-runner-groups-navigate-to-repo-org-enterprise.md @@ -1,17 +1,20 @@ {% ifversion fpt %} 1. Navigate to the main page of the repository or organization where your self-hosted runner groups are located. 2. Click {% octicon "gear" aria-label="The Settings gear" %} **Settings**. -3. サイドバーで**Actions(アクション)**をクリックしてください。 -4. Click **Runner groups**. +{% data reusables.organizations.settings-sidebar-actions-runner-groups %} {% elsif ghec or ghes or ghae %} 1. Navigate to where your self-hosted runner groups are located: - * **In an organization**: navigate to the main page and click {% octicon "gear" aria-label="The Settings gear" %} **Settings**.{% ifversion ghec %} - * **If using an enterprise account**: navigate to your enterprise account by clicking your profile photo in the top-right corner of {% data variables.product.prodname_dotcom_the_website %}, then clicking **Your enterprises**, then clicking the enterprise.{% elsif ghes or ghae %} - * **Enterpriseレベルのランナーを使っている場合**: - 1. 任意のページの右上で {% octicon "rocket" aria-label="The rocket ship" %} をクリックします。 - 2. 左のサイドバーで**Enterprise overview(Enterpriseの概要)**をクリックしてください。 - 3. In the enterprise sidebar, click {% octicon "law" aria-label="The law icon" %} **Policies**.{% endif %} + * **In an organization**: navigate to the main page and click {% octicon "gear" aria-label="The Settings gear" %} **Settings**. + * **If using an enterprise-level group**: + +{% indented_data_reference reusables.enterprise-accounts.access-enterprise spaces=5 %} 2. Navigate to the "Runner groups" settings: - * **In an organization**: Click **Actions** in the left sidebar, then click {% ifversion fpt or ghec or ghes > 3.3 or ghae-issue-5091 %}**Runner groups**{% elsif ghae or ghes < 3.4 %}**Runners**{% endif %} below it.{% ifversion ghec or ghes or ghae %} - * {% ifversion ghec %}**If using an enterprise account**:{% elsif ghes or ghae %}**If using an enterprise-level runner**:{% endif %} Click **Actions** under "{% octicon "law" aria-label="The law icon" %} Policies", then click the {% ifversion ghec or ghes > 3.3 or ghae-issue-5091 %}**Runners groups**{% elsif ghae or ghes < 3.4 %}**Runners**{% endif %} tab.{% endif %} + * **In an organization**: + +{% indented_data_reference reusables.actions.settings-ui.settings-actions-runner-groups spaces=5 %} + * **If using an enterprise-level group**: + +{% indented_data_reference reusables.enterprise-accounts.policies-tab spaces=5 %} +{% indented_data_reference reusables.enterprise-accounts.actions-tab spaces=5 %} +{% indented_data_reference reusables.enterprise-accounts.actions-runner-groups-tab spaces=5 %} {% endif %} diff --git a/translations/ja-JP/data/reusables/actions/self-hosted-runner-navigate-to-org-enterprise.md b/translations/ja-JP/data/reusables/actions/self-hosted-runner-navigate-to-org-enterprise.md index 8be8541efd92..c0936387e7c2 100644 --- a/translations/ja-JP/data/reusables/actions/self-hosted-runner-navigate-to-org-enterprise.md +++ b/translations/ja-JP/data/reusables/actions/self-hosted-runner-navigate-to-org-enterprise.md @@ -1,17 +1,20 @@ {% ifversion fpt %} -1. Navigate to the main page of the organization where your self-hosted runner group is registered. +1. Navigate to the main page of the organization where your self-hosted runner is registered. 2. Click {% octicon "gear" aria-label="The Settings gear" %} **Settings**. -3. サイドバーで**Actions(アクション)**をクリックしてください。 -4. Click **Runners**. +{% data reusables.organizations.settings-sidebar-actions-runners %} {% elsif ghec or ghes or ghae %} 1. セルフホストランナーが登録されているところへアクセスしてください: * **In an organization**: navigate to the main page and click {% octicon "gear" aria-label="The Settings gear" %} **Settings**. - * {% ifversion ghec %}**If using an enterprise account**: navigate to your enterprise account by clicking your profile photo in the top-right corner of {% data variables.product.prodname_dotcom_the_website %}, then clicking **Your enterprises**, then clicking the enterprise.{% elsif ghes or ghae %}**If using an enterprise-level runner**: + * **Enterpriseレベルのランナーを使っている場合**: - 1. 任意のページの右上で {% octicon "rocket" aria-label="The rocket ship" %} をクリックします。 - 1. 左のサイドバーで**Enterprise overview(Enterpriseの概要)**をクリックしてください。 - 1. In the enterprise sidebar, {% octicon "law" aria-label="The law icon" %} **Policies**.{% endif %} +{% indented_data_reference reusables.enterprise-accounts.access-enterprise spaces=5 %} 1. {% data variables.product.prodname_actions %}設定にアクセスしてください: - * **In an organization**: Click **Actions** in the left sidebar{% ifversion fpt or ghec or ghes > 3.1 or ghae %}, then click **Runners**{% endif %}. - * {% ifversion ghec %}**Enterpriseアカウントを使っている場合**:{% elsif ghes or ghae %}**Enterpriseレベルのランナーを使っている場合**:{% endif %} "{% octicon "law" aria-label="The law icon" %} Policies(ポリシー)”の下の**Actions**をクリック{% ifversion fpt or ghec or ghes > 3.1 or ghae %}し、続いて**Runners(ランナー)**タブをクリック{% endif %}してください。 + * **In an organization**: + +{% indented_data_reference reusables.actions.settings-ui.settings-actions-runners spaces=5 %} + * **Enterpriseレベルのランナーを使っている場合**: + +{% indented_data_reference reusables.enterprise-accounts.policies-tab spaces=5 %} +{% indented_data_reference reusables.enterprise-accounts.actions-tab spaces=5 %} +{% indented_data_reference reusables.enterprise-accounts.actions-runners-tab spaces=5 %} {% endif %} diff --git a/translations/ja-JP/data/reusables/actions/self-hosted-runner-navigate-to-repo-org-enterprise.md b/translations/ja-JP/data/reusables/actions/self-hosted-runner-navigate-to-repo-org-enterprise.md index bbbf605ae2b8..c8c4679f83d3 100644 --- a/translations/ja-JP/data/reusables/actions/self-hosted-runner-navigate-to-repo-org-enterprise.md +++ b/translations/ja-JP/data/reusables/actions/self-hosted-runner-navigate-to-repo-org-enterprise.md @@ -1,17 +1,22 @@ {% ifversion fpt %} 1. Navigate to the main page of the organization or repository where your self-hosted runner group is registered. 2. Click {% octicon "gear" aria-label="The Settings gear" %} **Settings**. -3. サイドバーで**Actions(アクション)**をクリックしてください。 -4. Click **Runners**. +{% data reusables.organizations.settings-sidebar-actions-runners %} {% elsif ghec or ghes or ghae %} 1. セルフホストランナーが登録されているところへアクセスしてください: - * **Organizationもしくはリポジトリ内**: メインページにアクセスして{% octicon "gear" aria-label="The Settings gear" %}** Settings(設定)**をクリックしてください。 {% ifversion ghec %} - * **If using an enterprise account**: navigate to your enterprise account by clicking your profile photo in the top-right corner of {% data variables.product.prodname_dotcom_the_website %}, then clicking **Your enterprises**, then clicking the enterprise.{% elsif ghes or ghae %} + * **Organizationもしくはリポジトリ内**: メインページにアクセスして{% octicon "gear" aria-label="The Settings gear" %}** Settings(設定)**をクリックしてください。 * **Enterpriseレベルのランナーを使っている場合**: - 1. 任意のページの右上で {% octicon "rocket" aria-label="The rocket ship" %} をクリックします。 - 2. 左のサイドバーで**Enterprise overview(Enterpriseの概要)**をクリックしてください。 - 3. In the enterprise sidebar, click {% octicon "law" aria-label="The law icon" %} **Policies**.{% endif %} + +{% indented_data_reference reusables.enterprise-accounts.access-enterprise spaces=5 %} 2. {% data variables.product.prodname_actions %}設定にアクセスしてください: - * **In an organization or repository**: Click **Actions** in the left sidebar{% ifversion fpt or ghes > 3.1 or ghae or ghec %}, then click **Runners**{% endif %}.{% ifversion ghec or ghae or ghes %} - * {% ifversion ghec %}**If using an enterprise account**:{% elsif ghes or ghae %}**If using an enterprise-level runner**:{% endif %} Click **Actions** under "{% octicon "law" aria-label="The law icon" %} Policies"{% ifversion ghes > 3.1 or ghae or ghec %}, then click the **Runners** tab{% endif %}.{% endif %} + * **In an organization or repository**: + +{% indented_data_reference reusables.actions.settings-ui.settings-actions-runners spaces=5 %} + {%- ifversion ghec or ghae or ghes %} + * **Enterpriseレベルのランナーを使っている場合**: + +{% indented_data_reference reusables.enterprise-accounts.policies-tab spaces=5 %} +{% indented_data_reference reusables.enterprise-accounts.actions-tab spaces=5 %} +{% indented_data_reference reusables.enterprise-accounts.actions-runners-tab spaces=5 %} + {%- endif %} {% endif %} diff --git a/translations/ja-JP/data/reusables/actions/settings-sidebar-actions-runner-groups.md b/translations/ja-JP/data/reusables/actions/settings-sidebar-actions-runner-groups.md deleted file mode 100644 index 6272975d7a5c..000000000000 --- a/translations/ja-JP/data/reusables/actions/settings-sidebar-actions-runner-groups.md +++ /dev/null @@ -1,2 +0,0 @@ -1. In the left sidebar, click **Actions**.{% ifversion fpt or ghes > 3.1 or ghae or ghec %} -1. In the left sidebar, under "Actions", click **Runner groups**.{% endif %} diff --git a/translations/ja-JP/data/reusables/actions/settings-sidebar-actions-runners.md b/translations/ja-JP/data/reusables/actions/settings-sidebar-actions-runners.md deleted file mode 100644 index 6bdcd5989998..000000000000 --- a/translations/ja-JP/data/reusables/actions/settings-sidebar-actions-runners.md +++ /dev/null @@ -1 +0,0 @@ -1. 左のサイドバーで、**Actions**をクリック{% ifversion fpt or ghes > 3.1 or ghae or ghec %}し、続いて**Runners(ランナー)**をクリック{% endif %}してください。 diff --git a/translations/ja-JP/data/reusables/actions/settings-sidebar-actions.md b/translations/ja-JP/data/reusables/actions/settings-sidebar-actions.md deleted file mode 100644 index 0d20efc2bd82..000000000000 --- a/translations/ja-JP/data/reusables/actions/settings-sidebar-actions.md +++ /dev/null @@ -1 +0,0 @@ -1. サイドバーで**Actions(アクション)**をクリックしてください。 diff --git a/translations/ja-JP/data/reusables/actions/settings-ui/settings-actions-general.md b/translations/ja-JP/data/reusables/actions/settings-ui/settings-actions-general.md new file mode 100644 index 000000000000..2e08467c9092 --- /dev/null +++ b/translations/ja-JP/data/reusables/actions/settings-ui/settings-actions-general.md @@ -0,0 +1,2 @@ +{% comment %}This reusable is only to be used in other repo/org/enterprise setting reusables.{%- endcomment -%} +1. In the left sidebar, click {% ifversion fpt or ghec or ghes > 3.4 or ghae-issue-5658 %}{% octicon "play" aria-label="The {% data variables.product.prodname_actions %} icon" %} **Actions**, then click **General**.{% else %}**Actions**.{% endif %} \ No newline at end of file diff --git a/translations/ja-JP/data/reusables/actions/settings-ui/settings-actions-runner-groups.md b/translations/ja-JP/data/reusables/actions/settings-ui/settings-actions-runner-groups.md new file mode 100644 index 000000000000..cb8aac7753bf --- /dev/null +++ b/translations/ja-JP/data/reusables/actions/settings-ui/settings-actions-runner-groups.md @@ -0,0 +1,5 @@ +{% comment %}This reusable is only to be used in other repo/org/enterprise setting reusables.{%- endcomment -%} +1. In the left sidebar, click {% ifversion fpt or ghec or ghes > 3.4 or ghae-issue-5658 %}{% octicon "play" aria-label="The {% data variables.product.prodname_actions %} icon" %} **Actions**, then click **Runner groups**.{% else %}**Actions**.{% ifversion ghes > 3.3 or ghae-issue-5091 %} +1. In the left sidebar, under "Actions", click **Runner groups**. +{%- elsif ghes > 3.1 or ghae %} +1. In the left sidebar, under "Actions", click **Runners**.{% endif %}{% endif %} \ No newline at end of file diff --git a/translations/ja-JP/data/reusables/actions/settings-ui/settings-actions-runners.md b/translations/ja-JP/data/reusables/actions/settings-ui/settings-actions-runners.md new file mode 100644 index 000000000000..f54e9c4b40dc --- /dev/null +++ b/translations/ja-JP/data/reusables/actions/settings-ui/settings-actions-runners.md @@ -0,0 +1,3 @@ +{% comment %}This reusable is only to be used in other repo/org/enterprise setting reusables.{%- endcomment -%} +1. In the left sidebar, click {% ifversion fpt or ghec or ghes > 3.4 or ghae-issue-5658 %}{% octicon "play" aria-label="The {% data variables.product.prodname_actions %} icon" %} **Actions**, then click **Runners**.{% else %}**Actions**.{% ifversion ghes > 3.1 or ghae %} +1. In the left sidebar, under "Actions", click **Runners**.{% endif %}{% endif %} \ No newline at end of file diff --git a/translations/ja-JP/data/reusables/billing/email-notifications.md b/translations/ja-JP/data/reusables/billing/email-notifications.md index 730b423648c2..4948bf6f1003 100644 --- a/translations/ja-JP/data/reusables/billing/email-notifications.md +++ b/translations/ja-JP/data/reusables/billing/email-notifications.md @@ -2,4 +2,4 @@ Email notifications are sent to account owners and billing managers when spendin You can disable these notifications anytime by navigating to the bottom of the **Spending Limit** page. -![Screenshot of the billing email notification settings](/assets/images/help/billing/actions-packages-spending-limit-notifications.png) +![支払いのメール通知設定のスクリーンショット](/assets/images/help/billing/actions-packages-spending-limit-notifications.png) diff --git a/translations/ja-JP/data/reusables/enterprise_management_console/actions.md b/translations/ja-JP/data/reusables/enterprise_management_console/actions.md index ea32192e26f2..f9bfc37fd4d9 100644 --- a/translations/ja-JP/data/reusables/enterprise_management_console/actions.md +++ b/translations/ja-JP/data/reusables/enterprise_management_console/actions.md @@ -1 +1,3 @@ -1. サイドバーで**Actions(アクション)**をクリックしてください。 ![設定サイドバーのActionsタブ](/assets/images/enterprise/management-console/sidebar-actions.png) +1. サイドバーで**Actions(アクション)**をクリックしてください。 + + ![設定サイドバーのActionsタブ](/assets/images/enterprise/management-console/sidebar-actions.png) diff --git a/translations/ja-JP/data/reusables/organizations/settings-sidebar-actions-general.md b/translations/ja-JP/data/reusables/organizations/settings-sidebar-actions-general.md new file mode 100644 index 000000000000..c5ba757ebbec --- /dev/null +++ b/translations/ja-JP/data/reusables/organizations/settings-sidebar-actions-general.md @@ -0,0 +1 @@ +{% data reusables.actions.settings-ui.settings-actions-general %} \ No newline at end of file diff --git a/translations/ja-JP/data/reusables/organizations/settings-sidebar-actions-runner-groups.md b/translations/ja-JP/data/reusables/organizations/settings-sidebar-actions-runner-groups.md new file mode 100644 index 000000000000..477154a0ae0f --- /dev/null +++ b/translations/ja-JP/data/reusables/organizations/settings-sidebar-actions-runner-groups.md @@ -0,0 +1 @@ +{% data reusables.actions.settings-ui.settings-actions-runner-groups %} \ No newline at end of file diff --git a/translations/ja-JP/data/reusables/organizations/settings-sidebar-actions-runners.md b/translations/ja-JP/data/reusables/organizations/settings-sidebar-actions-runners.md new file mode 100644 index 000000000000..4a9ce38f658a --- /dev/null +++ b/translations/ja-JP/data/reusables/organizations/settings-sidebar-actions-runners.md @@ -0,0 +1 @@ +{% data reusables.actions.settings-ui.settings-actions-runners %} \ No newline at end of file diff --git a/translations/ja-JP/data/reusables/organizations/settings-sidebar-actions.md b/translations/ja-JP/data/reusables/organizations/settings-sidebar-actions.md deleted file mode 100644 index 0d20efc2bd82..000000000000 --- a/translations/ja-JP/data/reusables/organizations/settings-sidebar-actions.md +++ /dev/null @@ -1 +0,0 @@ -1. サイドバーで**Actions(アクション)**をクリックしてください。 diff --git a/translations/ja-JP/data/reusables/repositories/settings-sidebar-actions-general.md b/translations/ja-JP/data/reusables/repositories/settings-sidebar-actions-general.md new file mode 100644 index 000000000000..c5ba757ebbec --- /dev/null +++ b/translations/ja-JP/data/reusables/repositories/settings-sidebar-actions-general.md @@ -0,0 +1 @@ +{% data reusables.actions.settings-ui.settings-actions-general %} \ No newline at end of file diff --git a/translations/ja-JP/data/reusables/repositories/settings-sidebar-actions-runners.md b/translations/ja-JP/data/reusables/repositories/settings-sidebar-actions-runners.md new file mode 100644 index 000000000000..4a9ce38f658a --- /dev/null +++ b/translations/ja-JP/data/reusables/repositories/settings-sidebar-actions-runners.md @@ -0,0 +1 @@ +{% data reusables.actions.settings-ui.settings-actions-runners %} \ No newline at end of file diff --git a/translations/ja-JP/data/reusables/repositories/settings-sidebar-actions.md b/translations/ja-JP/data/reusables/repositories/settings-sidebar-actions.md deleted file mode 100644 index c350461a12d1..000000000000 --- a/translations/ja-JP/data/reusables/repositories/settings-sidebar-actions.md +++ /dev/null @@ -1,5 +0,0 @@ -1. In the left sidebar, click **Actions**{% ifversion ghes > 3.4 or ghae-issue-6090 or ghec %}, then **General**. - - ![The Actions > General sidebar option](/assets/images/help/repository/actions-general-tab.png) - -{% else %}.{% endif %} diff --git a/translations/ja-JP/data/reusables/support/enterprise-resolving-and-closing-tickets.md b/translations/ja-JP/data/reusables/support/enterprise-resolving-and-closing-tickets.md index dc954c244709..d2a1376a4e0d 100644 --- a/translations/ja-JP/data/reusables/support/enterprise-resolving-and-closing-tickets.md +++ b/translations/ja-JP/data/reusables/support/enterprise-resolving-and-closing-tickets.md @@ -1,8 +1,8 @@ {% data variables.contact.enterprise_support %}は、説明、推薦事項、利用方法の指示、{% ifversion ghae %}あるいは{% endif %}回避策の指示{% ifversion ghes %}あるいはその問題に対処している利用可能なリリースのアドバイス{% endif %}の提供を持って、チケットが解決したものと見なすことがあります。 {% ifversion ghes or ghae %} -If you use a custom or unsupported plug-in, module, or custom code, -{% data variables.contact.enterprise_support %} may ask you to remove the unsupported plug-in, module, or code while attempting to resolve the issue. サポートされていないプラグイン、モジュール、カスタムコードが削除されたことで問題が修正された場合、{% data variables.contact.enterprise_support %}はチケットが解決されたと見なすことがあります。 +If you have installed additional third-party software on, or made modifications to, +{% data variables.product.product_name %} outside of the recommendations of {% data variables.contact.enterprise_support %}, {% data variables.contact.enterprise_support %} may ask you to remove the software and/or modifications while attempting to resolve the issue. If the problem is fixed when the unsupported software or modifications have been removed, {% data variables.contact.enterprise_support %} may consider the ticket solved. {% endif %} {% data variables.contact.enterprise_support %}は、チケットがサポートの範囲外の場合、あるいは複数回の連絡に対して返答がいただけなかった場合、チケットをクローズすることがあります。 反応がなかったことによって{% data variables.contact.enterprise_support %}がチケットをクローズした場合、{% data variables.contact.enterprise_support %}にチケットをサイドオープンするようリクエストできます。 diff --git a/translations/log/ja-resets.csv b/translations/log/ja-resets.csv index 960dfb64bf90..1d057dc470ea 100644 --- a/translations/log/ja-resets.csv +++ b/translations/log/ja-resets.csv @@ -81,6 +81,7 @@ translations/ja-JP/content/billing/managing-billing-for-github-advanced-security translations/ja-JP/content/billing/managing-billing-for-github-advanced-security/viewing-your-github-advanced-security-usage.md,Listed in localization-support#489 translations/ja-JP/content/billing/managing-billing-for-github-advanced-security/viewing-your-github-advanced-security-usage.md,rendering error translations/ja-JP/content/billing/managing-billing-for-github-packages/about-billing-for-github-packages.md,broken liquid tags +translations/ja-JP/content/billing/managing-billing-for-your-github-account/about-billing-for-your-enterprise.md,broken liquid tags translations/ja-JP/content/billing/managing-billing-for-your-github-account/how-does-upgrading-or-downgrading-affect-the-billing-process.md,broken liquid tags translations/ja-JP/content/billing/managing-licenses-for-visual-studio-subscriptions-with-github-enterprise/about-visual-studio-subscriptions-with-github-enterprise.md,broken liquid tags translations/ja-JP/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/about-code-scanning-alerts.md,broken liquid tags