Skip to content

Commit 7abc670

Browse files
authored
Merge pull request #18233 from github/repo-sync
repo sync
2 parents ea6e789 + 718e5ca commit 7abc670

File tree

19 files changed

+130
-138
lines changed

19 files changed

+130
-138
lines changed

translations/ja-JP/content/actions/learn-github-actions/contexts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ jobs:
192192
| `github.event_path` | `string` | The path to the file on the runner that contains the full event webhook payload. |
193193
| `github.graphql_url` | `string` | The URL of the {% data variables.product.prodname_dotcom %} GraphQL API. |
194194
| `github.head_ref` | `string` | ワークフローの実行における `head_ref` またはPull Requestのソースブランチ。 このプロパティは、ワークフローの実行をトリガーするイベントが `pull_request` または `pull_request_target` のいずれかである場合にのみ使用できます。 |
195-
| `github.job` | `string` | 現在のジョブの[`job_id`](/actions/reference/workflow-syntax-for-github-actions#jobsjob_id) |
195+
| `github.job` | `string` | 現在のジョブの[`job_id`](/actions/reference/workflow-syntax-for-github-actions#jobsjob_id)<br /> Note: This context property is set by the Actions runner, and is only available within the execution `steps` of a job. Otherwise, the value of this property will be `null`. |
196196
| `github.ref` | `string` | ワークフローの実行をトリガーしたブランチまたはタグ ref。 For branches this is the format `refs/heads/<branch_name>`, and for tags it is `refs/tags/<tag_name>`. |
197197
{%- ifversion fpt or ghec or ghes > 3.3 or ghae-issue-5338 %}
198198
| `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 %}
@@ -201,7 +201,7 @@ jobs:
201201
{%- ifversion fpt or ghec or ghes > 3.5 or ghae-issue-4722 %}
202202
| `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. |
203203
{%- endif %}
204-
| `github.server_url` | `string` | The URL of the GitHub server. たとえば、`https://github.com` などです。 | | `github.sha` | `string` | The commit SHA that triggered the workflow run. | | `github.token` | `string` | A token to authenticate on behalf of the GitHub App installed on your repository. これは機能的に`GITHUB_TOKEN`シークレットに等価です。 詳しい情報については「[自動トークン認証](/actions/security-guides/automatic-token-authentication)」を参照してください。 | | `github.workflow` | `string` | The name of the workflow. ワークフローファイルで `name` を指定していない場合、このプロパティの値は、リポジトリ内にあるワークフローファイルのフルパスになります。 | | `github.workspace` | `string` | The default working directory on the runner for steps, and the default location of your repository when using the [`checkout`](https://github.com/actions/checkout) action. |
204+
| `github.server_url` | `string` | The URL of the GitHub server. たとえば、`https://github.com` などです。 | | `github.sha` | `string` | The commit SHA that triggered the workflow run. | | `github.token` | `string` | A token to authenticate on behalf of the GitHub App installed on your repository. これは機能的に`GITHUB_TOKEN`シークレットに等価です。 詳しい情報については「[自動トークン認証](/actions/security-guides/automatic-token-authentication)」を参照してください。 <br /> Note: This context property is set by the Actions runner, and is only available within the execution `steps` of a job. Otherwise, the value of this property will be `null`. | | `github.workflow` | `string` | The name of the workflow. ワークフローファイルで `name` を指定していない場合、このプロパティの値は、リポジトリ内にあるワークフローファイルのフルパスになります。 | | `github.workspace` | `string` | The default working directory on the runner for steps, and the default location of your repository when using the [`checkout`](https://github.com/actions/checkout) action. |
205205

206206
### Example contents of the `github` context
207207

translations/ja-JP/content/authentication/managing-commit-signature-verification/about-commit-signature-verification.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ Commits and tags have the following verification statuses, depending on whether
3636
| **Unverified** | The commit is signed but the signature could not be verified.
3737
| No verification status | The commit is not signed.
3838

39+
### Signature verification for rebase and merge
40+
{% data reusables.pull_requests.rebase_and_merge_verification %}
41+
42+
For more information, see "[Rebasing and merging your commits](/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/about-merge-methods-on-github#rebasing-and-merging-your-commits)."
43+
3944
### Statuses with vigilant mode enabled
4045

4146
{% data reusables.identity-and-permissions.vigilant-mode-verification-statuses %}

translations/ja-JP/content/authentication/securing-your-account-with-two-factor-authentication-2fa/configuring-two-factor-authentication.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ If you're a member of an {% data variables.product.prodname_emu_enterprise %}, y
5353
{% data reusables.user-settings.access_settings %}
5454
{% data reusables.user-settings.security %}
5555
{% data reusables.two_fa.enable-two-factor-authentication %}
56-
{%- ifversion fpt or ghes > 3.1 %}
56+
{%- ifversion fpt or ghec or ghes > 3.1 %}
5757
5. Under "Two-factor authentication", select **Set up using an app** and click **Continue**.
5858
6. Under "Authentication verification", do one of the following:
5959
- QR コードを、モバイルデバイスのアプリでスキャンする。 スキャン後、アプリは {% data variables.product.product_name %} で入力する 6 桁の数字を表示します。

translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ The recommended formats explicitly define which versions are used for all direct
7272
{%- if github-actions-in-dependency-graph %}
7373
| {% data variables.product.prodname_actions %} workflows<sup>[1]</sup> | YAML | `.yml`, `.yaml` | `.yml`, `.yaml` |
7474
{%- endif %}
75-
{%- ifversion fpt or ghes > 3.2 or ghae %}
75+
{%- ifversion fpt or ghec or ghes > 3.2 or ghae %}
7676
| Go modules | Go | `go.sum` | `go.mod`, `go.sum` |
7777
{%- elsif ghes = 3.2 %}
7878
| Go modules | Go | `go.mod` | `go.mod` |

translations/ja-JP/content/communities/using-templates-to-encourage-useful-issues-and-pull-requests/common-validation-errors-when-creating-issue-forms.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,6 @@ Errors with `body` will be prefixed with `body[i]` where `i` represents the zero
311311
body:
312312
- attributes:
313313
value: "Thanks for taking the time to fill out this bug! If you need real-time help, join us on Discord."
314-
preview_only: false
315314
```
316315

317316
The error can be fixed by adding the key `type` with a valid input type as the value. For the available `body` input types and their syntaxes, see "[Syntax for {% data variables.product.prodname_dotcom %}'s form schema](/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#keys)."
@@ -321,7 +320,6 @@ body:
321320
- type: markdown
322321
attributes:
323322
value: "Thanks for taking the time to fill out this bug! If you need real-time help, join us on Discord."
324-
preview_only: false
325323
```
326324

327325
## Body[i]: `x` is not a valid input type
@@ -337,7 +335,6 @@ body:
337335
- type: x
338336
attributes:
339337
value: "Thanks for taking the time to fill out this bug! If you need real-time help, join us on Discord."
340-
preview_only: false
341338
```
342339

343340
The error can be fixed by changing `x` to one of the valid types.
@@ -347,7 +344,6 @@ body:
347344
- type: markdown
348345
attributes:
349346
value: "Thanks for taking the time to fill out this bug! If you need real-time help, join us on Discord."
350-
preview_only: false
351347
```
352348

353349
## Body[i]: required attribute key `value` is missing
@@ -363,7 +359,6 @@ body:
363359
- type: markdown
364360
attributes:
365361
value: "Thanks for taking the time to fill out this bug! If you need real-time help, join us on Discord."
366-
preview_only: false
367362
- type: markdown
368363
```
369364

@@ -374,7 +369,6 @@ body:
374369
- type: markdown
375370
attributes:
376371
value: "Thanks for taking the time to fill out this bug! If you need real-time help, join us on Discord."
377-
preview_only: false
378372
- type: markdown
379373
attributes:
380374
value: "This is working now!"

translations/ja-JP/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-at-your-educational-institution/about-github-campus-program.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ shortTitle: GitHub Campus Program
1919
- Exclusive access to new features, GitHub Education-specific swag, and free developer tools from {% data variables.product.prodname_dotcom %} partners
2020
- Automated access to premium {% data variables.product.prodname_education %} features, like the {% data variables.product.prodname_student_pack %}
2121

22-
To read about how GitHub is used by educators, see [GitHub Education stories.](https://education.github.com/stories)
22+
To read about how GitHub is used by educators, see [GitHub Education stories](https://education.github.com/stories).
2323

2424
## {% data variables.product.prodname_campus_program %} terms and conditions
2525

@@ -32,7 +32,7 @@ To read about how GitHub is used by educators, see [GitHub Education stories.](h
3232
- New organizations in your enterprise are automatically added to your enterprise account. To add organizations that existed before your school joined the {% data variables.product.prodname_campus_program %}, please contact [GitHub Education Support](https://support.github.com/contact/education). For more information about administrating your enterprise, see the [enterprise administrators documentation](/admin). New organizations in your enterprise are automatically added to your enterprise account. To add organizations that existed before your school joined the {% data variables.product.prodname_campus_program %}, please contact GitHub Education Support.
3333

3434

35-
To read more about {% data variables.product.prodname_dotcom %}'s privacy practices, see ["Global Privacy Practices"](/github/site-policy/global-privacy-practices)
35+
To read more about {% data variables.product.prodname_dotcom %}'s privacy practices, see ["Global Privacy Practices"](/github/site-policy/global-privacy-practices).
3636

3737
## {% data variables.product.prodname_campus_program %} Application Eligibility
3838

translations/ja-JP/content/get-started/quickstart/fork-a-repo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ When you fork a project in order to propose changes to the original repository,
154154

155155
6. Type `git remote add upstream`, and then paste the URL you copied in Step 3 and press **Enter**. 次のようになります:
156156
```shell
157-
$ git remote add upstream https://{% data variables.command_line.codeblock %}/YOUR_USERNAME/Spoon-Knife.git
157+
$ git remote add upstream https://{% data variables.command_line.codeblock %}/ORIGINAL_OWNER/Spoon-Knife.git
158158
```
159159

160160
7. To verify the new upstream repository you have specified for your fork, type `git remote -v` again. フォークの URL が `origin` として、オリジナルのリポジトリの URL が `upstream` として表示されるはずです。

translations/ja-JP/content/get-started/writing-on-github/working-with-advanced-formatting/creating-diagrams.md

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,27 @@ For example, you can create a simple map:
4949
<pre>
5050
```geojson
5151
{
52-
"type": "Polygon",
53-
"coordinates": [
54-
[
55-
[-90,30],
56-
[-90,35],
57-
[-90,35],
58-
[-85,35],
59-
[-85,30]
60-
]
52+
"type": "FeatureCollection",
53+
"features": [
54+
{
55+
"type": "Feature",
56+
"id": 1,
57+
"properties": {
58+
"ID": 0
59+
},
60+
"geometry": {
61+
"type": "Polygon",
62+
"coordinates": [
63+
[
64+
[-90,35],
65+
[-90,30],
66+
[-85,30],
67+
[-85,35],
68+
[-90,35]
69+
]
70+
]
71+
}
72+
}
6173
]
6274
}
6375
```

translations/ja-JP/content/graphql/guides/using-global-node-ids.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ topics:
1212
- API
1313
---
1414

15-
GitHubのほとんどのオブジェクト(ユーザ、Issue、プルリクエストなど)には、REST APIを使っても、GraphQL APIを使ってもアクセスできます。 [最近のアップデート](https://developer.github.com/changes/2017-12-19-graphql-node-id/)で、多くのオブジェクトの**グローバルノードID**をREST APIから見つけ、それらのIDをGraphQLの操作で使えるようになりました。
15+
GitHubのほとんどのオブジェクト(ユーザ、Issue、プルリクエストなど)には、REST APIを使っても、GraphQL APIを使ってもアクセスできます。 You can find the **global node ID** of many objects from within the REST API and use these IDs in your GraphQL operations. For more information, see "[Preview GraphQL API v4 Node IDs in REST API v3 resources](https://developer.github.com/changes/2017-12-19-graphql-node-id/)."
1616

1717
{% note %}
1818

translations/ja-JP/content/packages/working-with-a-github-packages-registry/working-with-the-container-registry.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,14 @@ When installing or publishing a Docker image, the {% data variables.product.prod
5050

5151
## Pushing container images
5252

53-
This example pushes the latest version of `IMAGE-NAME`.
53+
This example pushes the latest version of `IMAGE_NAME`.
5454
```shell
5555
$ docker push {% data reusables.package_registry.container-registry-hostname %}/OWNER/IMAGE_NAME:latest
5656
```
5757

5858
This example pushes the `2.5` version of the image.
5959
```shell
60-
$ docker push {% data reusables.package_registry.container-registry-hostname %}/OWNER/IMAGE-NAME:2.5
60+
$ docker push {% data reusables.package_registry.container-registry-hostname %}/OWNER/IMAGE_NAME:2.5
6161
```
6262

6363
When you first publish a package, the default visibility is private. To change the visibility or set access permissions, see "[Configuring a package's access control and visibility](/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility)."

0 commit comments

Comments
 (0)