diff --git a/translations/ja-JP/content/actions/learn-github-actions/contexts.md b/translations/ja-JP/content/actions/learn-github-actions/contexts.md index 120c504102..db050bb3d7 100644 --- a/translations/ja-JP/content/actions/learn-github-actions/contexts.md +++ b/translations/ja-JP/content/actions/learn-github-actions/contexts.md @@ -57,6 +57,8 @@ As part of an expression, you can access context information using one of two sy - `a-Z` または `_` で始まる。 - `a-Z` 、`0-9`、 `-`、または`_`が続く。 +If you attempt to dereference a non-existent property, it will evaluate to an empty string. + ### コンテキストを使用する場合の判断 {% data reusables.actions.using-context-or-environment-variables %} @@ -183,7 +185,7 @@ jobs: | `github.action_status` | `string` | For a composite action, the current result of the composite action. | | `github.actor` | `string` | The username of the user that initiated the workflow run. | | `github.api_url` | `string` | The URL of the {% data variables.product.prodname_dotcom %} REST API. | -| `github.base_ref` | `string` | ワークフローの実行における `base_ref` またはプルリクエストのターゲットブランチ。 このプロパティは、ワークフローの実行をトリガーするイベントが `pull_request` または `pull_request_target` のいずれかである場合にのみ使用できます。 | +| `github.base_ref` | `string` | ワークフローの実行における `base_ref` またはPull Requestのターゲットブランチ。 このプロパティは、ワークフローの実行をトリガーするイベントが `pull_request` または `pull_request_target` のいずれかである場合にのみ使用できます。 | | `github.env` | `string` | Path on the runner to the file that sets environment variables from workflow commands. This file is unique to the current step and is a different file for each step in a job. 詳しい情報については「[{% data variables.product.prodname_actions %}のワークフローコマンド](/actions/learn-github-actions/workflow-commands-for-github-actions#setting-an-environment-variable)」を参照してください。 | | `github.event` | `オブジェクト` | webhook ペイロードの完全なイベント。 このコンテキストを使用して、イベントの個々のプロパティにアクセスできます。 This object is identical to the webhook payload of the event that triggered the workflow run, and is different for each event. The webhooks for each {% data variables.product.prodname_actions %} event is linked in "[Events that trigger workflows](/articles/events-that-trigger-workflows/)." For example, for a workflow run triggered by the [`push` event](/actions/using-workflows/events-that-trigger-workflows#push), this object contains the contents of the [push webhook payload](/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#push). | | `github.event_name` | `string` | ワークフローの実行をトリガーしたイベントの名前。 | @@ -195,7 +197,7 @@ jobs: {%- ifversion fpt or ghec or ghes > 3.3 or ghae-issue-5338 %} | `github.ref_name` | `string` | {% data reusables.actions.ref_name-description %} | | `github.ref_protected` | `string` | {% data reusables.actions.ref_protected-description %} | | `github.ref_type` | `string` | {% data reusables.actions.ref_type-description %} {%- endif %} -| `github.path` | `string` | Path on the runner to the file that sets system `PATH` variables from workflow commands. This file is unique to the current step and is a different file for each step in a job. For more information, see "[Workflow commands for {% data variables.product.prodname_actions %}](/actions/learn-github-actions/workflow-commands-for-github-actions#adding-a-system-path)." | | `github.repository` | `string` | The owner and repository name. `Codertocat/Hello-World`などです。 | | `github.repository_owner` | `string` | The repository owner's name. たとえば`Codertocat`。 | | `github.repositoryUrl` | `string` | The Git URL to the repository. For example, `git://github.com/codertocat/hello-world.git`. | | `github.retention_days` | `string` | The number of days that workflow run logs and artifacts are kept. | | `github.run_id` | `string` | {% data reusables.actions.run_id_description %} | | `github.run_number` | `string` | {% data reusables.actions.run_number_description %} +| `github.path` | `string` | Path on the runner to the file that sets system `PATH` variables from workflow commands. This file is unique to the current step and is a different file for each step in a job. 詳しい情報については「[{% data variables.product.prodname_actions %}のワークフローコマンド](/actions/learn-github-actions/workflow-commands-for-github-actions#adding-a-system-path)」を参照してください。 | | `github.repository` | `string` | The owner and repository name. `Codertocat/Hello-World`などです。 | | `github.repository_owner` | `string` | The repository owner's name. たとえば`Codertocat`。 | | `github.repositoryUrl` | `string` | The Git URL to the repository. For example, `git://github.com/codertocat/hello-world.git`. | | `github.retention_days` | `string` | The number of days that workflow run logs and artifacts are kept. | | `github.run_id` | `string` | {% data reusables.actions.run_id_description %} | | `github.run_number` | `string` | {% data reusables.actions.run_number_description %} {%- ifversion fpt or ghec or ghes > 3.5 or ghae-issue-4722 %} | `github.run_attempt` | `string` | A unique number for each attempt of a particular workflow run in a repository. This number begins at 1 for the workflow run's first attempt, and increments with each re-run. | {%- endif %} @@ -505,7 +507,7 @@ jobs: ## `secrets` context -The `secrets` context contains the names and values of secrets that are available to a workflow run. The `secrets` context is not available for composite actions. For more information about secrets, see "[Encrypted secrets](/actions/security-guides/encrypted-secrets)." +The `secrets` context contains the names and values of secrets that are available to a workflow run. The `secrets` context is not available for composite actions. シークレットに関する詳しい情報については「[暗号化されたシークレット](/actions/security-guides/encrypted-secrets)」を参照してください。 `GITHUB_TOKEN` is a secret that is automatically created for every workflow run, and is always included in the `secrets` context. 詳しい情報については「[自動トークン認証](/actions/security-guides/automatic-token-authentication)」を参照してください。 @@ -633,7 +635,7 @@ jobs: ## `needs`コンテキスト -`needs`コンテキストは、現在のジョブの依存関係として定義されたすべてのジョブからの出力を含みます。 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)." +`needs`コンテキストは、現在のジョブの依存関係として定義されたすべてのジョブからの出力を含みます。 ジョブの依存関係の定義に関する詳しい情報については「[{% data variables.product.prodname_actions %}のワークフロー構文](/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idneeds)」を参照してください。 | プロパティ名 | 種類 | 説明 | | -------------------------------------------------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | diff --git a/translations/ja-JP/content/actions/using-workflows/events-that-trigger-workflows.md b/translations/ja-JP/content/actions/using-workflows/events-that-trigger-workflows.md index 973d0d0061..bd26e07b04 100644 --- a/translations/ja-JP/content/actions/using-workflows/events-that-trigger-workflows.md +++ b/translations/ja-JP/content/actions/using-workflows/events-that-trigger-workflows.md @@ -1157,7 +1157,7 @@ jobs: [crontab guru](https://crontab.guru/) を使うと、クーロン構文の生成および実行時間の確認に役立ちます。 また、クーロン構文の生成を支援するため、[crontab guru のサンプル](https://crontab.guru/examples.html)リストもあります。 -ワークフロー内のクーロン構文を最後に修正したユーザには、スケジュールされたワークフローの通知が送られます。 For more information, see "[Notifications for workflow runs](/actions/guides/about-continuous-integration#notifications-for-workflow-runs)." +ワークフロー内のクーロン構文を最後に修正したユーザには、スケジュールされたワークフローの通知が送られます。 For more information, see "[Notifications for workflow runs](/actions/monitoring-and-troubleshooting-workflows/notifications-for-workflow-runs)." ### `ステータス` diff --git a/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/managing-your-role-in-an-organization-owned-by-your-enterprise.md b/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/managing-your-role-in-an-organization-owned-by-your-enterprise.md index 8e650bea7b..8aed8da019 100644 --- a/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/managing-your-role-in-an-organization-owned-by-your-enterprise.md +++ b/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/managing-your-role-in-an-organization-owned-by-your-enterprise.md @@ -24,7 +24,7 @@ You can choose to join an organization owned by your enterprise as a member or a {% warning %} -**Warning**: If an organization uses SCIM to provision users, joining the organization this way could have unintended consequences. For more information, see "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +**Warning**: If an organization uses SCIM to provision users, joining the organization this way could have unintended consequences. 詳しい情報については、「[OrganizationのSCIMについて](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)」を参照してください。 {% endwarning %} diff --git a/translations/ja-JP/content/code-security/supply-chain-security/end-to-end-supply-chain/securing-accounts.md b/translations/ja-JP/content/code-security/supply-chain-security/end-to-end-supply-chain/securing-accounts.md index 1fe6ab42c4..fd76bde8ae 100644 --- a/translations/ja-JP/content/code-security/supply-chain-security/end-to-end-supply-chain/securing-accounts.md +++ b/translations/ja-JP/content/code-security/supply-chain-security/end-to-end-supply-chain/securing-accounts.md @@ -35,7 +35,7 @@ You can configure SAML authentication for an enterprise or organization account. After you configure SAML authentication, when members request access to your resources, they'll be directed to your SSO flow to ensure they are still recognized by your IdP. If they are unrecognized, their request is declined. -Some IdPs support a protocol called SCIM, which can automatically provision or deprovision access on {% data variables.product.product_name %} when you make changes on your IdP. With SCIM, you can simplify administration as your team grows, and you can quickly revoke access to accounts. SCIM is available for individual organizations on {% data variables.product.product_name %}, or for enterprises that use {% data variables.product.prodname_emus %}. For more information, see "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +Some IdPs support a protocol called SCIM, which can automatically provision or deprovision access on {% data variables.product.product_name %} when you make changes on your IdP. With SCIM, you can simplify administration as your team grows, and you can quickly revoke access to accounts. SCIM is available for individual organizations on {% data variables.product.product_name %}, or for enterprises that use {% data variables.product.prodname_emus %}. 詳しい情報については、「[OrganizationのSCIMについて](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)」を参照してください。 {% endif %} {% ifversion ghes %} diff --git a/translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md b/translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md index 6cbb18c5af..409595d281 100644 --- a/translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md +++ b/translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md @@ -54,7 +54,7 @@ For public repositories, only public repositories that depend on it or on packag You can use the dependency graph to: -- Explore the repositories your code depends on{% ifversion fpt or ghec %}, and those that depend on it{% endif %}. For more information, see "[Exploring the dependencies of a repository](/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository)." {% ifversion fpt or ghec %} +- Explore the repositories your code depends on{% ifversion fpt or ghec %}, and those that depend on it{% endif %}. For more information, see "[Exploring the dependencies of a repository](/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository)." {% ifversion ghec %} - View a summary of the dependencies used in your organization's repositories in a single dashboard. For more information, see "[Viewing insights for your organization](/articles/viewing-insights-for-your-organization#viewing-organization-dependency-insights)."{% endif %} - View and update vulnerable dependencies for your repository. For more information, see "[About {% data variables.product.prodname_dependabot_alerts %}](/code-security/supply-chain-security/about-alerts-for-vulnerable-dependencies)."{% ifversion fpt or ghes > 3.1 or ghec %} - See information about vulnerable dependencies in pull requests. For more information, see "[Reviewing dependency changes in a pull request](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-dependency-changes-in-a-pull-request)."{% endif %} @@ -102,7 +102,6 @@ The recommended formats explicitly define which versions are used for all direct ## Further reading - "[Dependency graph](https://en.wikipedia.org/wiki/Dependency_graph)" on Wikipedia -- "[Exploring the dependencies of a repository](/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository)"{% ifversion fpt or ghec %} -- "[Viewing insights for your organization](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization)"{% endif %} +- "[Exploring the dependencies of a repository](/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository)" - "[Viewing {% data variables.product.prodname_dependabot_alerts %} for vulnerable dependencies](/github/managing-security-vulnerabilities/viewing-and-updating-vulnerable-dependencies-in-your-repository)" - "[Troubleshooting the detection of vulnerable dependencies](/github/managing-security-vulnerabilities/troubleshooting-the-detection-of-vulnerable-dependencies)" diff --git a/translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-the-dependency-graph.md b/translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-the-dependency-graph.md index e4103e17ef..be5882befd 100644 --- a/translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-the-dependency-graph.md +++ b/translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-the-dependency-graph.md @@ -37,6 +37,6 @@ shortTitle: Configure dependency graph ## 参考リンク -{% ifversion fpt or ghec %}- "[Viewing insights for your organization](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization)"{% endif %} +{% ifversion ghec %}- "[Viewing insights for your organization](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization)"{% endif %} - "[Viewing {% data variables.product.prodname_dependabot_alerts %} for vulnerable dependencies](/github/managing-security-vulnerabilities/viewing-and-updating-vulnerable-dependencies-in-your-repository)" - 「[脆弱性のある依存関係の検出のトラブルシューティング](/github/managing-security-vulnerabilities/troubleshooting-the-detection-of-vulnerable-dependencies)」 diff --git a/translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/exploring-the-dependencies-of-a-repository.md b/translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/exploring-the-dependencies-of-a-repository.md index 29e02f3520..a2947459f6 100644 --- a/translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/exploring-the-dependencies-of-a-repository.md +++ b/translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/exploring-the-dependencies-of-a-repository.md @@ -106,7 +106,7 @@ You may notice some repositories have a "Used by" section in the sidebar of the ## 参考リンク - [依存関係グラフについて](/github/visualizing-repository-data-with-graphs/about-the-dependency-graph) -- "[Viewing {% data variables.product.prodname_dependabot_alerts %} for vulnerable dependencies](/github/managing-security-vulnerabilities/viewing-and-updating-vulnerable-dependencies-in-your-repository)"{% ifversion fpt or ghec %} -- [Organization のインサイトを表示する](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization) +- 「[脆弱性のある依存関係に対する{% data variables.product.prodname_dependabot_alerts %}の表示](/github/managing-security-vulnerabilities/viewing-and-updating-vulnerable-dependencies-in-your-repository)」{% ifversion ghec %} +- "[Viewing insights for your organization](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization)"{% endif %}{% ifversion fpt or ghec %} - [{% data variables.product.prodname_dotcom %}によるデータの利用と保護の方法の理解](/get-started/privacy-on-github) {% endif %} diff --git a/translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization.md b/translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization.md index 5ffeedc5a1..8c26e799b2 100644 --- a/translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization.md +++ b/translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization.md @@ -1,12 +1,10 @@ --- title: Organization のインサイトを表示する intro: Organization のインサイトは、Organization のアクティビティ、コントリビューション、および依存関係についてのデータを提供します。 -product: '{% data reusables.gated-features.org-insights %}' redirect_from: - /articles/viewing-insights-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/viewing-insights-for-your-organization versions: - fpt: '*' ghec: '*' topics: - Organizations @@ -15,6 +13,8 @@ shortTitle: Organizationインサイトの表示 permissions: Organization members can view organization insights. --- +## Organizationインサイトについて + Organization のメンバーが、コードについてコラボレートや作業をするため {% data variables.product.product_name %} をどう使っているかについて、より深く理解するために、Organization activity insights を使用できます。 dependency insights は、Organization のオープンソース利用について追跡、レポート、および行動するため役立ちます。 {% note %} diff --git a/translations/ja-JP/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization.md b/translations/ja-JP/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization.md index 87915ce49b..0828aeca48 100644 --- a/translations/ja-JP/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization.md +++ b/translations/ja-JP/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization.md @@ -24,7 +24,7 @@ Organizationに対する SAMLシングルサインオンを有効にすると、 {% data reusables.saml.about-linked-identities %} -利用できる場合には、このエントリにはSCIMデータが含まれます。 For more information, see "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +利用できる場合には、このエントリにはSCIMデータが含まれます。 詳しい情報については、「[OrganizationのSCIMについて](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)」を参照してください。 {% warning %} diff --git a/translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization.md b/translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization.md index 07d6d1db33..c476b6112c 100644 --- a/translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization.md +++ b/translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization.md @@ -29,7 +29,7 @@ Organozationのオーナーは、コラボレータを招待する機能を制 {% endif %} {% ifversion ghes %} -リポジトリに外部コラボレータとして誰かを追加するには、その人は{% data variables.product.product_location %}上に個人アカウントを持っていなければなりません。 EnterpriseがSAMLやLDAPのような外部の認証システムを使っているなら、アカウントを作成するためには追加したい人はそのシステムを通じてサインインしなければなりません。 If the person does not have access to the authentication system and built-in authentication is enabled for your enterprise, a site administrator can create an account for the person. For more information, see "[Configuring built-in authentication](/admin/identity-and-access-management/using-built-in-authentication/configuring-built-in-authentication)." +リポジトリに外部コラボレータとして誰かを追加するには、その人は{% data variables.product.product_location %}上に個人アカウントを持っていなければなりません。 EnterpriseがSAMLやLDAPのような外部の認証システムを使っているなら、アカウントを作成するためには追加したい人はそのシステムを通じてサインインしなければなりません。 その人がその認証システムにアクセスできず、Enterpriseではビルトイン認証が有効化されているなら、サイト管理者がその人にアカウントを作成できます。 詳しい情報については、「[ビルトイン認証の設定](/admin/identity-and-access-management/using-built-in-authentication/configuring-built-in-authentication)」を参照してください。 {% endif %} {% ifversion not ghae %} diff --git a/translations/ja-JP/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md b/translations/ja-JP/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md index 44520714ea..da693d15b5 100644 --- a/translations/ja-JP/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md +++ b/translations/ja-JP/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md @@ -23,7 +23,7 @@ Organization がユーザ単位の有料プランである場合、新しいメ Organization がメンバーに 2 要素認証を使うことを要求している場合、招待するユーザは招待を受ける前に 2 要素認証を有効化する必要があります。 詳細については、「[Organization で 2 要素認証を要求する](/organizations/keeping-your-organization-secure/requiring-two-factor-authentication-in-your-organization)」と「[2要素認証 (2FA) でアカウントをセキュアにする](/github/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa)」を参照してください。 -{% ifversion fpt %}{% data variables.product.prodname_ghe_cloud %}を使用するOrganization{% else %}あなた{% endif %}はSCIMを実装して、アイデンティティプロバイダ(IdP)を通じて{% data variables.product.prodname_dotcom_the_website %}へのメンバーのアクセスを追加、管理、削除できます。 For more information, see "[About SCIM for organizations](/enterprise-cloud@latest/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} +{% ifversion fpt %}{% data variables.product.prodname_ghe_cloud %}を使用するOrganization{% else %}あなた{% endif %}はSCIMを実装して、アイデンティティプロバイダ(IdP)を通じて{% data variables.product.prodname_dotcom_the_website %}へのメンバーのアクセスを追加、管理、削除できます。 詳しい情報については{% ifversion fpt %}、{% data variables.product.prodname_ghe_cloud %}ドキュメンテーションの{% else %}、{% endif %}「[OrganizatinのSCIMについて](/enterprise-cloud@latest/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)を参照してください。 ## Organizationに参加するようユーザを招待する diff --git a/translations/ja-JP/content/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights.md b/translations/ja-JP/content/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights.md index 4591a3266d..59c57beeb9 100644 --- a/translations/ja-JP/content/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights.md +++ b/translations/ja-JP/content/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights.md @@ -1,12 +1,10 @@ --- title: Organization dependency insights の可視性を変更する intro: Organization のメンバーが、Organization dependency insights を表示できるように設定できます。また、Organization のオーナーにのみ表示できるようにも設定できます。 -product: '{% data reusables.gated-features.org-insights %}' redirect_from: - /articles/changing-the-visibility-of-your-organizations-dependency-insights - /github/setting-up-and-managing-organizations-and-teams/changing-the-visibility-of-your-organizations-dependency-insights versions: - fpt: '*' ghec: '*' topics: - Organizations diff --git a/translations/ja-JP/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md b/translations/ja-JP/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md index 0eb4c2031a..7f2a460d2a 100644 --- a/translations/ja-JP/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md +++ b/translations/ja-JP/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md @@ -103,8 +103,9 @@ Organizationでの{% data variables.product.prodname_github_app %}マネージ | プロジェクトボードの作成(「[Organizationのプロジェクトボード権限](/articles/project-board-permissions-for-an-organization)」参照) | **X** | **X** | **X** | | **X** | | Organization の全メンバーおよび Team の表示 | **X** | **X** | **X** | | **X** | | 参照可能なチームへの @メンション | **X** | **X** | **X** | | **X** | -| *チームメンテナ*に指定できる | **X** | **X** | **X** | | **X** | -| Organizationのインサイトの表示(「[Organizationのインサイトの表示](/articles/viewing-insights-for-your-organization)」参照) | **X** | **X** | **X** | | **X** | +| *チームメンテナ*に指定できる | **X** | **X** | **X** | | **X** |{% ifversion ghec %} +| Organizationのインサイトの表示(「[Organizationのインサイトの表示](/articles/viewing-insights-for-your-organization)」参照) | **X** | **X** | **X** | | **X** +{% endif %} | パブリックなTeamディスカッションの表示と**すべてのTeam**へのポスト(「[Teamディスカッションについて](/organizations/collaborating-with-your-team/about-team-discussions)」参照) | **X** | **X** | **X** | | **X** | | プライベートなTeamディスカッションの表示と**すべてのTeam**へのポスト(「[Teamディスカッションについて](/organizations/collaborating-with-your-team/about-team-discussions)」参照) | **X** | | | | | | **すべてのTeam**のTeamディスカッションの編集及び削除(「[問題を起こすコメントの管理](/communities/moderating-comments-and-conversations/managing-disruptive-comments)」参照) | **X** | | | | | @@ -112,8 +113,9 @@ Organizationでの{% data variables.product.prodname_github_app %}マネージ | 書き込み可能なコミット、Pull Request、Issue についてコメントを非表示にする (詳細は「[問題を起こすコメントの管理](/communities/moderating-comments-and-conversations/managing-disruptive-comments/#hiding-a-comment)」を参照) | **X** | **X** | **X** | | **X** | | _すべての_コミット、Pull Request、Issue についてコメントを非表示にする (詳細は「[問題を起こすコメントの管理](/communities/moderating-comments-and-conversations/managing-disruptive-comments/#hiding-a-comment)」を参照) | **X** | | **X** | | **X** | | メンバーではないコントリビューターのブロック及びブロック解除(「[Organizationからのユーザのブロック](/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-organization)」参照) | **X** | | **X** | | | -| パブリックリポジトリでの特定ユーザの操作の制限(「[Organizationでの操作の制限](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization)」参照) | **X** | | **X** | | | -| Organizationの依存関係インサイトの表示の管理(「[Organizationの依存関係インサイトの可視性の変更](/articles/changing-the-visibility-of-your-organizations-dependency-insights)」参照) | **X** | | | | | +| パブリックリポジトリでの特定ユーザの操作の制限(「[Organizationでの操作の制限](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization)」参照) | **X** | | **X** | | |{% ifversion ghec %} +| Organizationの依存関係インサイトの表示の管理(「[Organizationの依存関係インサイトの可視性の変更](/articles/changing-the-visibility-of-your-organizations-dependency-insights)」参照) | **X** | | | | +{% endif %} | **すべてのTeam**でTeamプロフィール画像を設定([Teamのプロフィール画像の設定](/articles/setting-your-team-s-profile-picture)」参照) | **X** | | | | | | アカウントのスポンサーとOrganizationのスポンサーシップの管理(「[オープンソースコントリビューターのスポンサー](/sponsors/sponsoring-open-source-contributors)」参照) | **X** | | | **X** | **X** | | スポンサーを受けたアカウントからのメール更新の管理(「[Organizationがスポンサーしているアカウントからの更新の管理](/organizations/managing-organization-settings/managing-updates-from-accounts-your-organization-sponsors)」参照) | **X** | | | | | diff --git a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on.md b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on.md index 6ac7aebc10..8483bb41ab 100644 --- a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on.md +++ b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on.md @@ -46,7 +46,7 @@ Organizationへのアクセスにメンバーが初めてSAML SSOを使うとき {% data reusables.saml.saml-supported-idps %} -一部の IdPは、SCIM を介した {% data variables.product.prodname_dotcom %} Organization へのプロビジョニングアクセスをサポートしています。 For more information, see "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +一部の IdPは、SCIM を介した {% data variables.product.prodname_dotcom %} Organization へのプロビジョニングアクセスをサポートしています。 詳しい情報については、「[OrganizationのSCIMについて](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)」を参照してください。 {% data reusables.scim.enterprise-account-scim %} @@ -56,7 +56,7 @@ SAML SSO を有効化後、Organization に新しいメンバーを追加する 新しいユーザを、Organization のオーナーから招待せずにプロビジョニングするには、`https://github.com/orgs/ORGANIZATION/sso/sign_up` の URL の _ORGANIZATION_ をあなたの Organization 名に置き換えてアクセスします。 たとえば、あなたの IdP にアクセスできる人なら誰でも、IdP のダッシュボードにあるリンクをクリックして、あなたの {% data variables.product.prodname_dotcom %} Organization に参加できるよう、IdP を設定できます。 -IdP が SCIM をサポートしている場合、{% data variables.product.prodname_dotcom %} は、IdP でアクセス権限が付与されたとき Organization に参加するよう自動的にメンバーを招待できます。 SAML IdP での メンバーの {% data variables.product.prodname_dotcom %} Organization へのアクセス権限を削除すると、そのメンバーは {% data variables.product.prodname_dotcom %} Organization から自動的に削除されます。 For more information, see "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +IdP が SCIM をサポートしている場合、{% data variables.product.prodname_dotcom %} は、IdP でアクセス権限が付与されたとき Organization に参加するよう自動的にメンバーを招待できます。 SAML IdP での メンバーの {% data variables.product.prodname_dotcom %} Organization へのアクセス権限を削除すると、そのメンバーは {% data variables.product.prodname_dotcom %} Organization から自動的に削除されます。 詳しい情報については、「[OrganizationのSCIMについて](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)」を参照してください。 {% data reusables.organizations.team-synchronization %} @@ -64,6 +64,6 @@ IdP が SCIM をサポートしている場合、{% data variables.product.prodn ## 参考リンク -- "[SAML configuration reference](/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference)" +- 「[SAML設定のリファレンス](/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference)」 - [2要素認証とSAMLシングルサインオンについて](/articles/about-two-factor-authentication-and-saml-single-sign-on) - [SAML シングルサインオンでの認証について](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on) diff --git a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations.md b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations.md index cdeb6c2074..b913025d87 100644 --- a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations.md +++ b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations.md @@ -1,5 +1,5 @@ --- -title: About SCIM for organizations +title: OrganizationのSCIMについて intro: System for Cross-domain Identity Management (SCIM) を使うと、管理者はユーザの識別情報のシステム間での交換を自動化できます。 redirect_from: - /articles/about-scim @@ -12,30 +12,30 @@ topics: - Teams --- -## About SCIM for organizations +## OrganizationのSCIMについて -If your organization uses [SAML SSO](/articles/about-identity-and-access-management-with-saml-single-sign-on), you can implement SCIM to add, manage, and remove organization members' access to {% data variables.product.product_name %}. たとえば、管理者は Organization のメンバーのデプロビジョニングに SCIM を使い、自動的にメンバーを Organization から削除できます。 +Organizationが[SAML SSO](/articles/about-identity-and-access-management-with-saml-single-sign-on)を使っているなら、Organizationのメンバーの{% data variables.product.product_name %}へのアクセスの追加、管理、削除のためのSCIMを実装できます。 たとえば、管理者は Organization のメンバーのデプロビジョニングに SCIM を使い、自動的にメンバーを Organization から削除できます。 {% data reusables.saml.ghec-only %} {% data reusables.scim.enterprise-account-scim %} -SCIM を実装せずに SAML SSO を使った場合、自動のプロビジョニング解除は行われません。 Organization のメンバーのアクセスが ldP から削除された後、セッションの有効期限が切れても、そのメンバーは Organization から自動的には削除されません。 認証済みのトークンにより、セッションが期限切れになった後も Organization へのアクセスが許可されます。 If SCIM is not used, to fully remove a member's access, an organization owner must remove the member's access in the IdP and manually remove the member from the organization on {% data variables.product.prodname_dotcom %}. +SCIM を実装せずに SAML SSO を使った場合、自動のプロビジョニング解除は行われません。 Organization のメンバーのアクセスが ldP から削除された後、セッションの有効期限が切れても、そのメンバーは Organization から自動的には削除されません。 認証済みのトークンにより、セッションが期限切れになった後も Organization へのアクセスが許可されます。 SCIMが疲れていないなら、メンバーのアクセスを完全に削除するためには、OrganizationのオーナーはメンバーのアクセスをIdPで削除し、手動で{% data variables.product.prodname_dotcom %}上のOrganizationからそのメンバーを削除しなければなりません。 {% data reusables.scim.changes-should-come-from-idp %} ## サポートされているアイデンティティプロバイダ -These identity providers (IdPs) are compatible with the {% data variables.product.product_name %} SCIM API for organizations. 詳しい情報については{% ifversion ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} APIドキュメンテーション中の[SCIM](/rest/scim)を参照してください。 +以下のアイデンティティプロバイダ(IdP)は、Organizationのための{% data variables.product.product_name %} SCIM APIと互換性があります。 詳しい情報については{% ifversion ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} APIドキュメンテーション中の[SCIM](/rest/scim)を参照してください。 - Azure AD - Okta - OneLogin -## About SCIM configuration for organizations +## OrganizationのためのSCIMの設定について {% data reusables.scim.dedicated-configuration-account %} -Before you authorize the {% data variables.product.prodname_oauth_app %}, you must have an active SAML session. 詳しい情報については「[SAML シングルサインオンでの認証について](/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on#about-oauth-apps-github-apps-and-saml-sso)」を参照してください。 +{% data variables.product.prodname_oauth_app %}を認可する前に、アクティブなSAMLセッションを持っていなければなりません。 詳しい情報については「[SAML シングルサインオンでの認証について](/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on#about-oauth-apps-github-apps-and-saml-sso)」を参照してください。 {% note %} diff --git a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md index fe702c15dd..c742d89747 100644 --- a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md +++ b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md @@ -18,7 +18,7 @@ shortTitle: OktaでSAMLとSCIMを設定する {% data reusables.saml.ghec-only %} -SAML SSO は、リポジトリや Issue、Pull Requestといった Organization のリソースに対するアクセスを制御し、保護します。 SCIMは、Oktaで変更があった場合に{% data variables.product.product_location %}上のOrganizationへのメンバーアクセスを自動的に追加、管理、削除します。 For more information, see "[About identity and access management with SAML single sign-on](/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on)" and "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +SAML SSO は、リポジトリや Issue、Pull Requestといった Organization のリソースに対するアクセスを制御し、保護します。 SCIMは、Oktaで変更があった場合に{% data variables.product.product_location %}上のOrganizationへのメンバーアクセスを自動的に追加、管理、削除します。 詳しい情報については、「[SAML シングルサインオンを使うアイデンティティおよびアクセス管理について](/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on)」と「[OrganizationのSCIM について](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)」を参照してください。 SCIM を有効にすると、Okta で {% data variables.product.prodname_ghe_cloud %} アプリケーションを割り当てる任意のユーザが次のプロビジョニング機能を使えるようになります。 @@ -41,9 +41,9 @@ SCIM を有効にすると、Okta で {% data variables.product.prodname_ghe_clo {% data reusables.scim.dedicated-configuration-account %} -1. Sign into {% data variables.product.prodname_dotcom_the_website %} using an account that is an organization owner and is ideally used only for SCIM configuration. -1. To create an active SAML session for your organization, navigate to `https://github.com/orgs/ORGANIZATION-NAME/sso`. 詳しい情報については「[SAML シングルサインオンでの認証について](/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on#about-oauth-apps-github-apps-and-saml-sso)」を参照してください。 -1. Navigate to Okta. +1. Organizationのオーナーであり、理想的にはSCIMの設定だけに使われるアカウントを使って{% data variables.product.prodname_dotcom_the_website %}にサインインしてください。 +1. OrganizationでアクティブなSAMLセッションを作成するには、`https://github.com/orgs/ORGANIZATION-NAME/sso`にアクセスしてください。 詳しい情報については「[SAML シングルサインオンでの認証について](/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on#about-oauth-apps-github-apps-and-saml-sso)」を参照してください。 +1. Oktaにアクセスしてください。 {% data reusables.saml.okta-dashboard-click-applications %} {% data reusables.saml.okta-applications-click-ghec-application-label %} {% data reusables.saml.okta-provisioning-tab %} diff --git a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md index f7b03224c1..994a064508 100644 --- a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md +++ b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md @@ -1,6 +1,6 @@ --- title: アイデンティティプロバイダを Organization に接続する -intro: 'To use SAML single sign-on and SCIM, you must connect your identity provider (IdP) to your organization on {% data variables.product.product_name %}.' +intro: 'SAML シングルサインオンおよび SCIM を使うには、あなたのアイデンティティプロバイダ(IdP)を、{% data variables.product.product_name %}上のあなたのOrganizationに接続する必要があります。' redirect_from: - /articles/connecting-your-identity-provider-to-your-organization - /github/setting-up-and-managing-organizations-and-teams/connecting-your-identity-provider-to-your-organization @@ -13,7 +13,7 @@ topics: shortTitle: IdPの接続 --- -## About connection of your IdP to your organization +## IdPのOrganizationへの接続について {% data variables.product.product_name %} OrganizationでSAML SSOを有効化すると、アイデンティティプロバイダ(IdP)をOrganizationに接続することになります。 詳細は「[Organization での SAML シングルサインオンの有効化とテスト](/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization)」を参照してください。 @@ -29,7 +29,7 @@ IdPのSAML及びSCIMの実装の詳細は、IdPのドキュメンテーション {% note %} -**メモ:** {% data variables.product.product_name %} がサポートする SCIM アイデンティティプロバイダは Azure AD、Okta、OneLogin です。 For more information about SCIM, see "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +**メモ:** {% data variables.product.product_name %} がサポートする SCIM アイデンティティプロバイダは Azure AD、Okta、OneLogin です。 SCIMに関する詳しい情報については「[OrganizationのSCIMについて](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)」を参照してください。 {% data reusables.scim.enterprise-account-scim %} @@ -37,4 +37,4 @@ IdPのSAML及びSCIMの実装の詳細は、IdPのドキュメンテーション ## SAMLのメタデータ -For more information about SAML metadata for your organization, see "[SAML configuration reference](/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference)." +OrganizationのSAMLメタデータに関する詳しい情報については「[SAML設定のリファレンス](/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference)」を参照してください。 diff --git a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization.md b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization.md index 572087c374..3dd09d853d 100644 --- a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization.md +++ b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization.md @@ -58,4 +58,4 @@ OrganizationでSAML SSOを施行する前に、Organizationの準備ができて ## 参考リンク - [SAML シングルサインオンを使うアイデンティティおよびアクセス管理について](/articles/about-identity-and-access-management-with-saml-single-sign-on) -- "[SAML configuration reference](/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference)" +- 「[SAML設定のリファレンス](/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference)」 diff --git a/translations/ja-JP/content/rest/actions/cache.md b/translations/ja-JP/content/rest/actions/cache.md index c9d3229a5a..e50798e8ba 100644 --- a/translations/ja-JP/content/rest/actions/cache.md +++ b/translations/ja-JP/content/rest/actions/cache.md @@ -1,6 +1,6 @@ --- title: キャッシュ -intro: 'The Cache API allows you to query and manage the {% data variables.product.prodname_actions %} cache for repositories.' +intro: 'キャッシュAPIを使うと、リポジトリの{% data variables.product.prodname_actions %}キャッシュに対するクエリと管理を行えます。' topics: - API versions: @@ -8,4 +8,4 @@ versions: ghec: '*' --- -The cache API allows you to query and manage the {% data variables.product.prodname_actions %} cache for repositories. 詳しい情報については、「[ワークフローを高速化するための依存関係のキャッシュ](/actions/advanced-guides/caching-dependencies-to-speed-up-workflows#usage-limits-and-eviction-policy)」を参照してください。 +キャッシュAPIを使うと、リポジトリの{% data variables.product.prodname_actions %}キャッシュに対するクエリと管理を行えます。 詳しい情報については、「[ワークフローを高速化するための依存関係のキャッシュ](/actions/advanced-guides/caching-dependencies-to-speed-up-workflows#usage-limits-and-eviction-policy)」を参照してください。 diff --git a/translations/ja-JP/content/rest/actions/index.md b/translations/ja-JP/content/rest/actions/index.md index adf631af47..546c192d70 100644 --- a/translations/ja-JP/content/rest/actions/index.md +++ b/translations/ja-JP/content/rest/actions/index.md @@ -24,4 +24,4 @@ children: - /workflows --- -{% data variables.product.prodname_actions %} API では、REST API を使用して {% data variables.product.prodname_actions %} を管理できます。 {% data reusables.actions.actions-authentication %} {% data variables.product.prodname_github_apps %} require the permissions mentioned in each endpoint. 詳しい情報については、「[{% data variables.product.prodname_actions %} のドキュメント](/actions)」を参照してください。 +{% data variables.product.prodname_actions %} API では、REST API を使用して {% data variables.product.prodname_actions %} を管理できます。 {% data reusables.actions.actions-authentication %} {% data variables.product.prodname_github_apps %} には、各エンドポイントで指定されている権限が必要です。 詳しい情報については、「[{% data variables.product.prodname_actions %} のドキュメント](/actions)」を参照してください。 diff --git a/translations/ja-JP/content/rest/actions/permissions.md b/translations/ja-JP/content/rest/actions/permissions.md index 50b3ea0a07..0e165558bd 100644 --- a/translations/ja-JP/content/rest/actions/permissions.md +++ b/translations/ja-JP/content/rest/actions/permissions.md @@ -1,6 +1,6 @@ --- title: 権限 -intro: 'The Permissions API allows you to set permissions for what enterprises, organizations, and repositories are allowed to run {% data variables.product.prodname_actions %}, and what actions{% if actions-workflow-policy %} and reusable workflows{% endif %} are allowed to run.' +intro: 'Permissions API では、どのEnterprise、組織、リポジトリが {% data variables.product.prodname_actions %} を実行できるか、どのアクション{% if actions-workflow-policy %}と再利用可能なワークフロー{% endif %}を実行できるかについて権限を設定できます。' topics: - API versions: @@ -12,4 +12,4 @@ versions: ## 権限 -The Permissions API allows you to set permissions for what enterprises, organizations, and repositories are allowed to run {% data variables.product.prodname_actions %}, and what actions{% if actions-workflow-policy %} and reusable workflows{% endif %} are allowed to run.{% ifversion fpt or ghec or ghes %} For more information, see "[Usage limits, billing, and administration](/actions/reference/usage-limits-billing-and-administration#disabling-or-limiting-github-actions-for-your-repository-or-organization)."{% endif %} +Permissions API では、どのEnterprise、組織、リポジトリが {% data variables.product.prodname_actions %} を実行できるか、どのアクション{% if actions-workflow-policy %}と再利用可能なワークフロー{% endif %}を実行できるかについて権限を設定できます。{% ifversion fpt or ghec or ghes %}詳しい情報については[利用制限、支払い、管理](/actions/reference/usage-limits-billing-and-administration#disabling-or-limiting-github-actions-for-your-repository-or-organization)」を参照してください。{% endif %} diff --git a/translations/ja-JP/content/rest/actions/secrets.md b/translations/ja-JP/content/rest/actions/secrets.md index cc0cc01ca8..77563f5f1f 100644 --- a/translations/ja-JP/content/rest/actions/secrets.md +++ b/translations/ja-JP/content/rest/actions/secrets.md @@ -12,4 +12,4 @@ versions: {% data reusables.actions.about-secrets %} 詳しい情報については、「[暗号化されたシークレットの作成と利用](/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets)」を参照してください。 -{% data reusables.actions.actions-authentication %} {% data variables.product.prodname_github_apps %} must have the `secrets` permission to use this API. 認証されたユーザは、シークレットを作成、更新、または読み取るために、リポジトリへのコラボレータアクセス権を持っている必要があります。 +{% data reusables.actions.actions-authentication %} {% data variables.product.prodname_github_apps %}がこのAPIを使うためには`secrets`権限を持っていなければなりません。 認証されたユーザは、シークレットを作成、更新、または読み取るために、リポジトリへのコラボレータアクセス権を持っている必要があります。 diff --git a/translations/ja-JP/content/rest/actions/self-hosted-runner-groups.md b/translations/ja-JP/content/rest/actions/self-hosted-runner-groups.md index 31071f6c56..4a402f7dc5 100644 --- a/translations/ja-JP/content/rest/actions/self-hosted-runner-groups.md +++ b/translations/ja-JP/content/rest/actions/self-hosted-runner-groups.md @@ -15,4 +15,4 @@ versions: セルフホストランナーグループ API を使用すると、セルフホストランナーのグループを管理できます。 詳しい情報については、「[グループを使用したセルフホストランナーへのアクセスを管理する](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups)」を参照してください。 -{% data reusables.actions.actions-authentication %} {% data variables.product.prodname_github_apps %} must have the `administration` permission for repositories or the `organization_self_hosted_runners` permission for organizations. Authenticated users must have admin access to repositories or organizations, or the `manage_runners:enterprise` scope for enterprises to use this API. +{% data reusables.actions.actions-authentication %} {% data variables.product.prodname_github_apps %}は、リポジトリに対する`administration`権限もしくはOrganizationに対する`organization_self_hosted_runners`権限を持っていなければなりません。 認証されたユーザがこのAPIを使うためには、リポジトリもしくはOrganizationに対する管理アクセス、あるいはEnterpriseに対する`manage_runners:enterprise`スコープを持っていなければなりません。 diff --git a/translations/ja-JP/content/rest/actions/self-hosted-runners.md b/translations/ja-JP/content/rest/actions/self-hosted-runners.md index c4d0efe45c..12b1dd928e 100644 --- a/translations/ja-JP/content/rest/actions/self-hosted-runners.md +++ b/translations/ja-JP/content/rest/actions/self-hosted-runners.md @@ -15,4 +15,4 @@ versions: セルフホストランナー API では、自分のホストランナーの登録、表示、削除ができます。 {% data reusables.actions.about-self-hosted-runners %} 詳しい情報については「[自分のランナーのホスト](/actions/hosting-your-own-runners)」を参照してください。 -{% data reusables.actions.actions-authentication %} {% data variables.product.prodname_github_apps %} must have the `administration` permission for repositories the `organization_self_hosted_runners` permission for organizations. Authenticated users must have admin access to repositories or organizations, or the `manage_runners:enterprise` scope for enterprises to use this API. +{% data reusables.actions.actions-authentication %} {% data variables.product.prodname_github_apps %}は、リポジトリに対する`administration`権限もしくはOrganizationに対する`organization_self_hosted_runners`権限を持っていなければなりません。 認証されたユーザがこのAPIを使うためには、リポジトリもしくはOrganizationに対する管理アクセス、あるいはEnterpriseに対する`manage_runners:enterprise`スコープを持っていなければなりません。 diff --git a/translations/ja-JP/content/rest/actions/workflow-runs.md b/translations/ja-JP/content/rest/actions/workflow-runs.md index 3fca12a420..3427dd2c61 100644 --- a/translations/ja-JP/content/rest/actions/workflow-runs.md +++ b/translations/ja-JP/content/rest/actions/workflow-runs.md @@ -1,6 +1,6 @@ --- -title: Workflow runs -intro: 'The Workflow Runs API allows you to view, re-run, cancel, and view logs for workflow runs.' +title: ワークフローの実行 +intro: Workflow Runs APIを使うと、ワークフローの実行の表示、再実行、キャンセル、ログの表示が行えます。 topics: - API versions: @@ -10,6 +10,6 @@ versions: ghec: '*' --- -{% data reusables.actions.about-workflow-runs %} For more information, see "[Managing a workflow run](/actions/automating-your-workflow-with-github-actions/managing-a-workflow-run)." +{% data reusables.actions.about-workflow-runs %} 詳しい情報については「[ワークフローの実行の管理](/actions/automating-your-workflow-with-github-actions/managing-a-workflow-run)」を参照してください。 -{% data reusables.actions.actions-authentication %} {% data reusables.actions.actions-app-actions-permissions-api %} \ No newline at end of file +{% data reusables.actions.actions-authentication %} {% data reusables.actions.actions-app-actions-permissions-api %} diff --git a/translations/ja-JP/content/rest/activity/feeds.md b/translations/ja-JP/content/rest/activity/feeds.md index 530855d5b7..bc75b862b5 100644 --- a/translations/ja-JP/content/rest/activity/feeds.md +++ b/translations/ja-JP/content/rest/activity/feeds.md @@ -11,9 +11,9 @@ topics: miniTocMaxHeadingLevel: 3 --- -### Example of getting an Atom feed +### Atomフィードの取得例 -To get a feed in Atom format, you must specify the `application/atom+xml` type in the `Accept` header. For example, to get the Atom feed for GitHub security advisories: +フィードをAtom形式で取得するには、`Accept`ヘッダ中で`application/atom+xml`タイプを指定しなければなりません。 以下は、GitHubセキュリティアドバイザリに対するAtomフィードの取得例です。 curl -H "Accept: application/atom+xml" https://github.com/security-advisories diff --git a/translations/ja-JP/content/rest/activity/notifications.md b/translations/ja-JP/content/rest/activity/notifications.md index 18231b4af8..ff27deb9fa 100644 --- a/translations/ja-JP/content/rest/activity/notifications.md +++ b/translations/ja-JP/content/rest/activity/notifications.md @@ -53,12 +53,12 @@ $ -H "If-Modified-Since: Thu, 25 Oct 2012 15:16:27 GMT" | 理由名 | 説明 | | ------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `assign` | Issue に割り当てられた。 | -| `作者` | スレッドを作成した。 | -| `コメント` | スレッドにコメントした。 | -| `ci_activity` | A {% data variables.product.prodname_actions %} workflow run that you triggered was completed. | -| `招待` | リポジトリへのコントリビューションへの招待を承諾した。 | +| `author` | スレッドを作成した。 | +| `comment` | スレッドにコメントした。 | +| `ci_activity` | トリガーした{% data variables.product.prodname_actions %} ワークフローの実行が完了した。 | +| `invitation` | リポジトリへのコントリビューションへの招待を承諾した。 | | `manual` | スレッドをサブスクライブした(Issue またはプルリクエストを介して)。 | -| `メンション` | コンテンツで具体的に**@メンション**された。 | +| `mention` | コンテンツで具体的に**@メンション**された。 | | `review_requested` | 自分、または自分が所属している Team が、Pull Requestのレビューを求められた。{% ifversion fpt or ghec %} | `security_alert` | {% data variables.product.prodname_dotcom %} が、リポジトリに[セキュリティの脆弱性](/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies)を発見した。{% endif %} | `state_change` | スレッドの状態を変更した(たとえば、Issue をクローズしたり、プルリクエストをマージしたりした)。 | diff --git a/translations/ja-JP/content/rest/apps/marketplace.md b/translations/ja-JP/content/rest/apps/marketplace.md index 2d7d144864..d1f479344d 100644 --- a/translations/ja-JP/content/rest/apps/marketplace.md +++ b/translations/ja-JP/content/rest/apps/marketplace.md @@ -17,6 +17,6 @@ versions: この API には、[**スタブされたデータ**で {% data variables.product.prodname_github_app %} をテスト](/marketplace/integrating-with-the-github-marketplace-api/testing-github-marketplace-apps/)できるエンドポイントが含まれています。 スタブされたデータはハードコードされた偽のデータであり、実際のプランに基づいて変更されることはありません。 -スタブされたデータでテストするには、対応する本番環境の代わりにスタブされたエンドポイントを使用します。 This allows you to test whether API logic succeeds before listing {% data variables.product.prodname_github_apps %} on {% data variables.product.prodname_marketplace %}. +スタブされたデータでテストするには、対応する本番環境の代わりにスタブされたエンドポイントを使用します。 これにより、{% data variables.product.prodname_github_apps %} を {% data variables.product.prodname_marketplace %} にリストする前に、API ロジックが成功するかどうかをテストできます。 {% data variables.product.prodname_github_app %} をデプロイする前に、スタブされたエンドポイントを本番のエンドポイントに置き換えてください。 diff --git a/translations/ja-JP/content/rest/apps/oauth-applications.md b/translations/ja-JP/content/rest/apps/oauth-applications.md index 037850e51c..728a9aa99b 100644 --- a/translations/ja-JP/content/rest/apps/oauth-applications.md +++ b/translations/ja-JP/content/rest/apps/oauth-applications.md @@ -1,5 +1,5 @@ --- -title: OAuth Applications +title: OAuthアプリケーション intro: '' topics: - API @@ -11,4 +11,4 @@ versions: ghec: '*' --- -You can use this API to manage the OAuth tokens an OAuth application uses to access people's accounts on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %}. +このAPIを使って、{% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %}上のユーザのアカウントにアクセスするためにOAuthアプリケーションが使うOAuthトークンを管理できます。 diff --git a/translations/ja-JP/content/rest/apps/webhooks.md b/translations/ja-JP/content/rest/apps/webhooks.md index f86038bbc6..0df0ab0ea1 100644 --- a/translations/ja-JP/content/rest/apps/webhooks.md +++ b/translations/ja-JP/content/rest/apps/webhooks.md @@ -11,4 +11,4 @@ versions: ghec: '*' --- -A {% data variables.product.prodname_github_app %}'s webhook allows you to receive HTTP `POST` payloads whenever certain events happen for an app. {% data reusables.webhooks.webhooks-rest-api-links %} +{% data variables.product.prodname_github_app %}のwebhookを使うと、特定のイベントがアプリケーションで生じた際に、HTTPの`POST`ペイロードを受信できます。 {% data reusables.webhooks.webhooks-rest-api-links %} diff --git a/translations/ja-JP/content/rest/branches/branches.md b/translations/ja-JP/content/rest/branches/branches.md index 81c1403e61..6611f258ea 100644 --- a/translations/ja-JP/content/rest/branches/branches.md +++ b/translations/ja-JP/content/rest/branches/branches.md @@ -1,6 +1,6 @@ --- title: ブランチ -intro: The Branches API allows you to modify branches and their protection settings. +intro: Branches APIを使うと、ブランチとブランチの保護設定を変更できます。 versions: fpt: '*' ghes: '*' diff --git a/translations/ja-JP/content/rest/codespaces/codespaces.md b/translations/ja-JP/content/rest/codespaces/codespaces.md index 9f10d69304..237537bec8 100644 --- a/translations/ja-JP/content/rest/codespaces/codespaces.md +++ b/translations/ja-JP/content/rest/codespaces/codespaces.md @@ -1,6 +1,6 @@ --- title: Codespaces -intro: The Codespaces API enables you to manage your codespaces using the REST API. +intro: Codespaces APIを使うと、REST APIを利用してcodespacesを管理できます。 versions: fpt: '*' ghec: '*' @@ -11,4 +11,4 @@ miniTocMaxHeadingLevel: 3 {% data reusables.codespaces.codespaces-api-beta-note %} -{% data variables.product.prodname_codespaces %} API では、REST API を使用して {% data variables.product.prodname_codespaces %} を管理できます。 This API is available for authenticated users and OAuth Apps, but not GitHub Apps. 詳細は「[{% data variables.product.prodname_codespaces %}](/codespaces)」を参照してください。 +{% data variables.product.prodname_codespaces %} API では、REST API を使用して {% data variables.product.prodname_codespaces %} を管理できます。 このAPIは認証を受けたユーザとOAuth Appが利用できますが、GitHub Appは利用できません。 詳細は「[{% data variables.product.prodname_codespaces %}](/codespaces)」を参照してください。 diff --git a/translations/ja-JP/content/rest/codespaces/machines.md b/translations/ja-JP/content/rest/codespaces/machines.md index b39416253f..2e09792490 100644 --- a/translations/ja-JP/content/rest/codespaces/machines.md +++ b/translations/ja-JP/content/rest/codespaces/machines.md @@ -1,6 +1,6 @@ --- -title: Machines -intro: 'The Machines API allows a user to determine which machine types are available to create a codespace, either on a given repository or as an authenticated user.' +title: マシン +intro: Machines APIを使うと、指定されたリポジトリ上あるいは認証を受けたユーザとしてcodespaceを作成するために利用できるマシンタイプを判断できます。 versions: fpt: '*' ghec: '*' @@ -9,6 +9,6 @@ topics: miniTocMaxHeadingLevel: 3 --- -For more information, see "[About machine types](/codespaces/developing-in-codespaces/changing-the-machine-type-for-your-codespace#about-machine-types)." +詳しい情報については「[マシンタイプについて](/codespaces/developing-in-codespaces/changing-the-machine-type-for-your-codespace#about-machine-types)」を参照してください。 -You can also use this information when changing the machine of an existing codespace by updating its `machine` property. The machine update will take place the next time the codespace is restarted. For more information, see "[Changing the machine type for your codespace](/codespaces/developing-in-codespaces/changing-the-machine-type-for-your-codespace)." \ No newline at end of file +この情報は、`machine`プロパティを更新することによって既存のcodespaceのマシンを変更する際にも利用できます。 マシンの更新は、codespaceが次に再起動された際に行われます。 詳しい情報については「[codespaceのマシンタイプの変更](/codespaces/developing-in-codespaces/changing-the-machine-type-for-your-codespace)」を参照してください。 diff --git a/translations/ja-JP/content/rest/codespaces/repository-secrets.md b/translations/ja-JP/content/rest/codespaces/repository-secrets.md index ccab41f36e..55daa7775d 100644 --- a/translations/ja-JP/content/rest/codespaces/repository-secrets.md +++ b/translations/ja-JP/content/rest/codespaces/repository-secrets.md @@ -1,6 +1,6 @@ --- -title: Repository Secrets -intro: 'The Repository Secrets API allows a user to create, list, and delete secrets (such as access tokens for cloud services) for repositories that the user has access to.' +title: リポジトリのシークレット +intro: Repository Secrets APIを使うと、ユーザは自分がアクセスできるリポジトリのためのシークレット(クラウドサービスのためのアクセストークンなど)の作成、リスト、削除ができます。 versions: fpt: '*' ghec: '*' @@ -10,6 +10,6 @@ topics: miniTocMaxHeadingLevel: 3 --- -## Repository Secrets +## リポジトリのシークレット -The Repository Secrets API allows a user to create, list, and delete secrets (such as access tokens for cloud services) for repositories that the user has access to. These secrets are made available to the codespace at runtime. For more information, see "[Managing encrypted secrets for your codespaces](/codespaces/managing-your-codespaces/managing-encrypted-secrets-for-your-codespaces)." \ No newline at end of file +Repository Secrets APIを使うと、ユーザは自分がアクセスできるリポジトリのためのシークレット(クラウドサービスのためのアクセストークンなど)の作成、リスト、削除ができます。 これらのシークレットは、実行時にcodespaceで利用できるようになります。 詳しい情報については「[codespaceのための暗号化されたシークレットの管理](/codespaces/managing-your-codespaces/managing-encrypted-secrets-for-your-codespaces)」を参照してください。 diff --git a/translations/ja-JP/content/rest/codespaces/secrets.md b/translations/ja-JP/content/rest/codespaces/secrets.md index fb315dc8ce..696a292ffa 100644 --- a/translations/ja-JP/content/rest/codespaces/secrets.md +++ b/translations/ja-JP/content/rest/codespaces/secrets.md @@ -1,6 +1,6 @@ --- -title: User Secrets -intro: 'The User Secrets API allows a user to create, list, and delete secrets (such as access tokens for cloud services) as well as assign secrets to repositories that the user has access to.' +title: ユーザシークレット +intro: User Secrets APIを使うと、ユーザは自分がアクセスできるリポジトリのためのシークレット(クラウドサービスのためのアクセストークンなど)の作成、リスト、削除とともに、シークレットの割り当てができます。 versions: fpt: '*' ghec: '*' @@ -10,6 +10,6 @@ miniTocMaxHeadingLevel: 3 allowTitleToDifferFromFilename: true --- -## User Secrets +## ユーザシークレット -The User Secrets API allows a user to create, list, and delete secrets (such as access tokens for cloud services) as well as assign secrets to repositories that the user has access to. These secrets are made available to the codespace at runtime. For more information, see "[Managing encrypted secrets for your codespaces](/codespaces/managing-your-codespaces/managing-encrypted-secrets-for-your-codespaces)." \ No newline at end of file +User Secrets APIを使うと、ユーザは自分がアクセスできるリポジトリのためのシークレット(クラウドサービスのためのアクセストークンなど)の作成、リスト、削除とともに、シークレットの割り当てができます。 これらのシークレットは、実行時にcodespaceで利用できるようになります。 詳しい情報については「[codespaceのための暗号化されたシークレットの管理](/codespaces/managing-your-codespaces/managing-encrypted-secrets-for-your-codespaces)」を参照してください。 diff --git a/translations/ja-JP/content/rest/collaborators/collaborators.md b/translations/ja-JP/content/rest/collaborators/collaborators.md index b40aa8c971..2bec28d0d8 100644 --- a/translations/ja-JP/content/rest/collaborators/collaborators.md +++ b/translations/ja-JP/content/rest/collaborators/collaborators.md @@ -1,6 +1,6 @@ --- title: コラボレータ -intro: 'The Collaborators API allows you to add, invite, and remove collaborators from a repository.' +intro: Collaborators APIを使うと、リポジトリでコラボレータの追加、招待、削除が行えます。 versions: fpt: '*' ghes: '*' diff --git a/translations/ja-JP/content/rest/collaborators/index.md b/translations/ja-JP/content/rest/collaborators/index.md index b13550d00d..5da4c4d966 100644 --- a/translations/ja-JP/content/rest/collaborators/index.md +++ b/translations/ja-JP/content/rest/collaborators/index.md @@ -1,6 +1,6 @@ --- title: コラボレータ -intro: 'The Collaborators API allows you to add, invite, and remove collaborators from a repository.' +intro: Collaborators APIを使うと、リポジトリでコラボレータの追加、招待、削除が行えます。 allowTitleToDifferFromFilename: true versions: fpt: '*' diff --git a/translations/ja-JP/content/rest/commits/commits.md b/translations/ja-JP/content/rest/commits/commits.md index 322b77c292..add8ca45b5 100644 --- a/translations/ja-JP/content/rest/commits/commits.md +++ b/translations/ja-JP/content/rest/commits/commits.md @@ -1,6 +1,6 @@ --- title: コミット -intro: 'The Commits API allows you to list, view, and compare commits in a repository. コミットコメントやコミットのステータスの操作もできます。' +intro: Commits APIを使うと、リポジトリ内のコミットのリスト、表示、比較ができます。 コミットコメントやコミットのステータスの操作もできます。 versions: fpt: '*' ghes: '*' diff --git a/translations/ja-JP/content/rest/commits/statuses.md b/translations/ja-JP/content/rest/commits/statuses.md index c70b141ecd..9d22dd8709 100644 --- a/translations/ja-JP/content/rest/commits/statuses.md +++ b/translations/ja-JP/content/rest/commits/statuses.md @@ -1,6 +1,6 @@ --- title: コミットのステータス -intro: 'The status API allows external services to mark commits with an `error`, `failure`, `pending`, or `success` state, which is then reflected in pull requests involving those commits.' +intro: ステータス API を使用すると、外部サービスがコミットに `error`、`failure`、`pending`、`success`ステータスを付けることができ、このステータスはコミットが含まれるPull Requestに反映されます。 versions: fpt: '*' ghes: '*' @@ -12,12 +12,12 @@ miniTocMaxHeadingLevel: 3 allowTitleToDifferFromFilename: true --- -Statuses can also include an optional `description` and `target_url`, and we highly recommend providing them as they make statuses much more useful in the GitHub UI. +ステータスには、オプションとして `description` と `target_url` を含めることもできます。これにより GitHub UI でステータスをより有用なものにできるので、強くおすすめします。 -As an example, one common use is for continuous integration services to mark commits as passing or failing builds using status. The `target_url` would be the full URL to the build output, and the `description` would be the high level summary of what happened with the build. +たとえば、継続的インテグレーションサービスの典型的な使用方法の一つが、ステータスを使用してコミットに成功もしくは失敗のビルドとマークすることです。 `target_url` でビルドの出力先の完全な URL、`description` でビルドで発生したことの概要を示すといったようにします。 -ステータスには、どのサービスがそのステータスを提供しているかを示す `context` を含めることができます。 たとえば、継続的インテグレーションサービスのプッシュステータスに `ci` のコンテキストを、セキュリティ監査ツールのプッシュステータスに `security` のコンテキストを含めることができます。 You can then use the [Get the combined status for a specific reference](/rest/reference/commits#get-the-combined-status-for-a-specific-reference) to retrieve the whole status for a commit. +ステータスには、どのサービスがそのステータスを提供しているかを示す `context` を含めることができます。 たとえば、継続的インテグレーションサービスのプッシュステータスに `ci` のコンテキストを、セキュリティ監査ツールのプッシュステータスに `security` のコンテキストを含めることができます。 その後、[特定リファレンスの複合的なステータス](/rest/reference/commits#get-the-combined-status-for-a-specific-reference)を使用して、コミットの全体のステータスを取得できます。 -Note that the `repo:status` [OAuth scope](/developers/apps/scopes-for-oauth-apps) grants targeted access to statuses **without** also granting access to repository code, while the `repo` scope grants permission to code as well as statuses. +`repo` スコープはコードにもステータスにもアクセス権を付与するのに対し、`repo:status` [OAuth scope](/developers/apps/scopes-for-oauth-apps) はステータスのみに絞ってアクセス権を付与し、リポジトリのコードにはアクセス権を付与**しない**ことに注意してください。 GitHub App を開発していて、外部サービスについて詳細な情報を提供したい場合は、[Checks API](/rest/reference/checks) を使用できます。 diff --git a/translations/ja-JP/content/rest/dependabot/index.md b/translations/ja-JP/content/rest/dependabot/index.md index c82be888af..810b622721 100644 --- a/translations/ja-JP/content/rest/dependabot/index.md +++ b/translations/ja-JP/content/rest/dependabot/index.md @@ -1,6 +1,6 @@ --- title: Dependabot -intro: 'With the Dependabot Secrets API, you can manage and control Dependabot secrets for an organization or repository.' +intro: Dependabot Secrets API を使用すると、OrganizationまたはリポジトリのDependabotシークレットを管理および制御できます。 allowTitleToDifferFromFilename: true versions: fpt: '*' diff --git a/translations/ja-JP/content/rest/dependabot/secrets.md b/translations/ja-JP/content/rest/dependabot/secrets.md index bc9b3753e5..1d96178d2c 100644 --- a/translations/ja-JP/content/rest/dependabot/secrets.md +++ b/translations/ja-JP/content/rest/dependabot/secrets.md @@ -1,6 +1,6 @@ --- title: シークレット -intro: 'With the Dependabot Secrets API, you can manage and control Dependabot secrets for an organization or repository.' +intro: Dependabot Secrets API を使用すると、OrganizationまたはリポジトリのDependabotシークレットを管理および制御できます。 topics: - API versions: @@ -10,6 +10,6 @@ versions: allowTitleToDifferFromFilename: true --- -The {% data variables.product.prodname_dependabot %} Secrets API lets you create, update, delete, and retrieve information about encrypted secrets. {% data reusables.actions.about-secrets %} For more information, see "[Managing encrypted secrets for Dependabot](/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/managing-encrypted-secrets-for-dependabot)." +{% data variables.product.prodname_dependabot %} Secret APIを使用すると、暗号化されたシークレットに関する情報の作成、更新、削除、取得ができます。 {% data reusables.actions.about-secrets %} 詳しい情報については「[Dependabotの暗号化されたシークレットの管理](/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/managing-encrypted-secrets-for-dependabot)」を参照してください。 -{% data reusables.actions.actions-authentication %} {% data variables.product.prodname_github_apps %} must have the `dependabot_secrets` permission to use this API. 認証されたユーザは、シークレットを作成、更新、または読み取るために、リポジトリへのコラボレータアクセス権を持っている必要があります。 +{% data reusables.actions.actions-authentication %} {% data variables.product.prodname_github_apps %}がこのAPIを使うには、`dependabot_secrets`権限を持っていなければなりません。 認証されたユーザは、シークレットを作成、更新、または読み取るために、リポジトリへのコラボレータアクセス権を持っている必要があります。 diff --git a/translations/ja-JP/content/sponsors/receiving-sponsorships-through-github-sponsors/viewing-your-sponsors-and-sponsorships.md b/translations/ja-JP/content/sponsors/receiving-sponsorships-through-github-sponsors/viewing-your-sponsors-and-sponsorships.md index 39941a5137..31f400a08b 100644 --- a/translations/ja-JP/content/sponsors/receiving-sponsorships-through-github-sponsors/viewing-your-sponsors-and-sponsorships.md +++ b/translations/ja-JP/content/sponsors/receiving-sponsorships-through-github-sponsors/viewing-your-sponsors-and-sponsorships.md @@ -50,13 +50,13 @@ For example, you can use `https://github.com/sponsors/{account}?metadata_campaig ## 最近のスポンサーシップアクティビティを表示する {% data reusables.sponsors.navigate-to-sponsors-dashboard %} -{% data reusables.sponsors.activity-tab %} +{% data reusables.sponsors.your-sponsors-tab %} ## スポンサーシップデータをエクスポートする スポンサーシップのトランザクションは 月単位でエクスポートできます。 {% data variables.product.company_short %} で、選択した月のスポンサーすべてのトランザクションデータがメールでエクスポートされます。 エクスポートが完了したら、別の月のデータをエクスポートできます。 スポンサードアカウントごとに、1 時間に 10 セットまでのデータをエクスポートできます。 {% data reusables.sponsors.navigate-to-sponsors-dashboard %} -{% data reusables.sponsors.activity-tab %} -1. {% octicon "download" aria-label="The download icon" %}[**Export**] をクリックします。 ![エクスポートボタン](/assets/images/help/sponsors/export-all.png) +{% data reusables.sponsors.your-sponsors-tab %} +1. In the top-right, click {% octicon "download" aria-label="The download icon" %} **Export**. ![エクスポートボタン](/assets/images/help/sponsors/export-all.png) 1. エクスポートしたいデータの時間枠と形式を選択し、[**Start export**] をクリックします。 ![データエクスポートのオプション](/assets/images/help/sponsors/export-your-sponsors.png) diff --git a/translations/ja-JP/data/reusables/gated-features/org-insights.md b/translations/ja-JP/data/reusables/gated-features/org-insights.md deleted file mode 100644 index 51448347bc..0000000000 --- a/translations/ja-JP/data/reusables/gated-features/org-insights.md +++ /dev/null @@ -1 +0,0 @@ -Organizationインサイトは{% data variables.product.prodname_ghe_cloud %}で利用できます。 詳細は「[{% data variables.product.prodname_dotcom %} の製品](/articles/github-s-products)」を参照してください。 diff --git a/translations/ja-JP/data/reusables/sponsors/activity-tab.md b/translations/ja-JP/data/reusables/sponsors/activity-tab.md deleted file mode 100644 index e3a6fa38b0..0000000000 --- a/translations/ja-JP/data/reusables/sponsors/activity-tab.md +++ /dev/null @@ -1 +0,0 @@ -1. 左のサイドバーで**Activity(アクティビティ)**をクリックしてください。 ![アクティビティタブ](/assets/images/help/sponsors/activity-tab.png) diff --git a/translations/ja-JP/data/reusables/sponsors/your-sponsors-tab.md b/translations/ja-JP/data/reusables/sponsors/your-sponsors-tab.md new file mode 100644 index 0000000000..7bc07aadf0 --- /dev/null +++ b/translations/ja-JP/data/reusables/sponsors/your-sponsors-tab.md @@ -0,0 +1 @@ +1. 左のサイドバーで**Your sponsors(あなたのスポンサー)**をクリックしてください。 ![Your sponsors tab](/assets/images/help/sponsors/your-sponsors-tab.png)