Skip to content

Commit d436652

Browse files
committed
Fix all <!-- markdownlint-disable-line fenced-code-language -->
1 parent 3c41c5d commit d436652

File tree

41 files changed

+151
-151
lines changed

Some content is hidden

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

41 files changed

+151
-151
lines changed

content/admin/administering-your-instance/administering-your-instance-from-the-command-line/command-line-utilities.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ Run this utility to add a certificate chain for S/MIME commit signature verifica
488488

489489
Run this utility when {% data variables.location.product_location %} is unable to connect to another server because the latter is using a self-signed SSL certificate or an SSL certificate for which it doesn't provide the necessary CA bundle. One way to confirm this is to run `openssl s_client -connect host:port -verify 0 -CApath /etc/ssl/certs` from {% data variables.location.product_location %}. If the remote server's SSL certificate can be verified, your `SSL-Session` should have a return code of 0, as shown below.
490490

491-
``` <!-- markdownlint-disable-line fenced-code-language -->
491+
```text
492492
SSL-Session:
493493
Protocol : TLSv1
494494
Cipher : AES128-SHA
@@ -503,7 +503,7 @@ SSL-Session:
503503

504504
If, on the other hand, the remote server's SSL certificate can _not_ be verified, your `SSL-Session` should have a nonzero return code:
505505

506-
``` <!-- markdownlint-disable-line fenced-code-language -->
506+
```text
507507
SSL-Session:
508508
Protocol : TLSv1
509509
Cipher : AES128-SHA
@@ -846,7 +846,7 @@ This utility helps to analyze Git traffic. It queries _Governor_ data files, loc
846846
ghe-governor <subcommand> <column> [options]
847847
```
848848

849-
``` <!-- markdownlint-disable-line fenced-code-language -->
849+
```text
850850
ghe-governor -h
851851
Usage: ghe-governor [-h] <subcommand> args
852852
@@ -917,7 +917,7 @@ ghe-actions-precheck -p [PROVIDER] -cs ["CONNECTION-STRING"]
917917

918918
If your storage system is configured correctly, you'll see the following output.
919919
920-
``` <!-- markdownlint-disable-line fenced-code-language -->
920+
```text
921921
All Storage tests passed
922922
```
923923
@@ -988,7 +988,7 @@ ghe-repl-stop
988988
989989
This utility completely disables replication on an existing replica node, removing the replica configuration. You can run the following command from a replica node, but if the replica node is unreachable, you can also run the command from the primary node.
990990
991-
``` <!-- markdownlint-disable-line fenced-code-language -->
991+
```shell
992992
ghe-repl-teardown
993993
```
994994

content/admin/backing-up-and-restoring-your-instance/configuring-backups-on-your-instance.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Backup snapshots are written to the disk path set by the `GHE_DATA_DIR` data dir
8080

8181
1. To change into the local repository directory, run the following command.
8282

83-
``` <!-- markdownlint-disable-line fenced-code-language -->
83+
```shell
8484
cd backup-utils
8585
```
8686

@@ -130,7 +130,7 @@ You can verify the installation method for {% data variables.product.prodname_en
130130
{% data reusables.enterprise_backup_utilities.enterprise-backup-utils-directory %}
131131
1. To check if a valid working directory exists inside a Git repository, run the following command.
132132

133-
``` <!-- markdownlint-disable-line fenced-code-language -->
133+
```shell
134134
git rev-parse --is-inside-work-tree
135135
```
136136

@@ -167,27 +167,27 @@ To use Git instead of a compressed archive for upgrades, you must back up your e
167167
{% data reusables.enterprise_backup_utilities.enterprise-backup-utils-directory %}
168168
1. To back up your existing {% data variables.product.prodname_enterprise_backup_utilities %} configuration, copy your current `backup.config` file to a safe location, such as your home directory.
169169

170-
``` <!-- markdownlint-disable-line fenced-code-language -->
170+
```shell
171171
cp backup.config $HOME/backup.config.saved-$(date +%Y%m%d-%H%M%S)
172172
```
173173

174174
1. Change to the local directory on your backup host where you want to install the {% data variables.product.prodname_enterprise_backup_utilities %} Git repository.
175175
1. To clone the [project repository](https://github.com/github/backup-utils/) to the directory on your backup host, run the following command.
176176

177-
``` <!-- markdownlint-disable-line fenced-code-language -->
177+
```shell
178178
git clone https://github.com/github/backup-utils.git
179179
```
180180

181181
1. To change into the cloned repository, run the following command.
182182

183-
``` <!-- markdownlint-disable-line fenced-code-language -->
183+
```shell
184184
cd backup-utils
185185
```
186186

187187
{% data reusables.enterprise_backup_utilities.enterprise-backup-utils-update-repo %}
188188
1. To restore your backup configuration from earlier, copy your existing backup configuration file to the local repository directory. Replace the path in the command with the location of the file saved in step 2.
189189

190-
``` <!-- markdownlint-disable-line fenced-code-language -->
190+
```shell
191191
cp PATH/TO/BACKUP/FROM/STEP/2 backup.config
192192
```
193193

content/admin/code-security/managing-supply-chain-security-for-your-enterprise/configuring-dependabot-to-work-with-limited-internet-access.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Before configuring {% data variables.product.prodname_dependabot %}, install Doc
3535

3636
For example, to support npm and {% data variables.product.prodname_actions %} you could use the following commands, copying details of the images to load from the `containers.json` file to ensure that you have the correct version and SHA for each image.
3737

38-
``` <!-- markdownlint-disable-line fenced-code-language -->
38+
```shell
3939
docker pull ghcr.io/github/dependabot-update-job-proxy/dependabot-update-job-proxy:VERSION@SHA
4040
docker pull ghcr.io/dependabot/dependabot-updater-github-actions:VERSION@SHA
4141
docker pull ghcr.io/dependabot/dependabot-updater-npm:VERSION@SHA

content/admin/configuration/configuring-user-applications-for-your-enterprise/configuring-email-for-notifications.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ If you need to verify that your inbound email is functioning, you can review `/v
155155

156156
`/var/log/mail.log` verifies that messages are reaching your server. Here's an example of a successful email reply:
157157

158-
``` <!-- markdownlint-disable-line fenced-code-language -->
158+
```text
159159
Oct 30 00:47:18 54-171-144-1 postfix/smtpd[13210]: connect from st11p06mm-asmtp002.mac.com[17.172.124.250]
160160
Oct 30 00:47:19 54-171-144-1 postfix/smtpd[13210]: 51DC9163323: client=st11p06mm-asmtp002.mac.com[17.172.124.250]
161161
Oct 30 00:47:19 54-171-144-1 postfix/cleanup[13216]: 51DC9163323: message-id=<[email protected]>
@@ -169,7 +169,7 @@ Note that the client first connects; then, the queue becomes active. Then, the m
169169

170170
`/var/log/mail-replies/metroplex.log` shows whether inbound emails are being processed to add to issues and pull requests as replies. Here's an example of a successful message:
171171

172-
``` <!-- markdownlint-disable-line fenced-code-language -->
172+
```text
173173
[2014-10-30T00:47:23.306 INFO (5284) #] metroplex: processing <[email protected]>
174174
[2014-10-30T00:47:23.333 DEBUG (5284) #] Matched /data/user/mail/reply/new/1414630039.Vfc00I12000eM445784.ghe-tjl2-co-ie
175175
[2014-10-30T00:47:23.334 DEBUG (5284) #] Moving /data/user/mail/reply/new/1414630039.Vfc00I12000eM445784.ghe-tjl2-co-ie => /data/user/incoming-mail/success

content/admin/configuration/configuring-user-applications-for-your-enterprise/configuring-rate-limits.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,13 @@ By default, the rate limit for {% data variables.product.prodname_actions %} is
105105

106106
1. To disable the rate limit after it's been enabled, run the following command.
107107

108-
``` <!-- markdownlint-disable-line fenced-code-language -->
108+
```shell
109109
ghe-config actions-rate-limiting.enabled false
110110
```
111111

112112
1. To apply the configuration, run the following command.
113113

114-
``` <!-- markdownlint-disable-line fenced-code-language -->
114+
```shell
115115
ghe-config-apply
116116
```
117117

content/admin/github-actions/advanced-configuration-and-troubleshooting/troubleshooting-github-actions-for-your-enterprise.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ If any of these services are at or near 100% CPU utilization, or the memory is n
101101

102102
In the output, find the "Allocated Resources" section. It looks similar to the following example:
103103

104-
``` <!-- markdownlint-disable-line fenced-code-language -->
104+
```text
105105
Allocated Resources
106106
CPU Memory Disk
107107
7740/49600 MHZ 23 GiB/32 GiB 4.4 GiB/7.9 GiB
@@ -127,7 +127,7 @@ If any of these services are at or near 100% CPU utilization, or the memory is n
127127
- `actions.hcl.ctmpl`
128128
1. For the services that you identified that need adjustment, open the corresponding file and locate the `resources` group that looks like the following:
129129

130-
``` <!-- markdownlint-disable-line fenced-code-language -->
130+
```terraform
131131
resources {
132132
cpu = 512
133133
memory = 2048
@@ -141,7 +141,7 @@ If any of these services are at or near 100% CPU utilization, or the memory is n
141141

142142
For example, to increase the resource limits in the above example to 1 GHz for the CPU and 4 GB of memory, change it to:
143143

144-
``` <!-- markdownlint-disable-line fenced-code-language -->
144+
```terraform
145145
resources {
146146
cpu = 1024
147147
memory = 4096

content/admin/github-actions/enabling-github-actions-for-github-enterprise-server/enabling-github-actions-with-amazon-s3-storage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,15 @@ To configure {% data variables.product.prodname_ghe_server %} to use OIDC with a
6464

6565
The command returns a thumbprint in the following format:
6666

67-
``` <!-- markdownlint-disable-line fenced-code-language -->
67+
```text
6868
SHA1 Fingerprint=AB:12:34:56:78:90:AB:CD:EF:12:34:56:78:90:AB:CD:EF:12:34:56
6969
```
7070

7171
1. Remove the colons (`:`) from the thumbprint value, and save the value to use later.
7272

7373
For example, the thumbprint for the value returned in the previous step is:
7474

75-
``` <!-- markdownlint-disable-line fenced-code-language -->
75+
```text
7676
AB1234567890ABCDEF1234567890ABCDEF123456
7777
```
7878

content/admin/github-actions/enabling-github-actions-for-github-enterprise-server/enabling-github-actions-with-google-cloud-storage.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@ To configure {% data variables.product.prodname_ghe_server %} to use OIDC with G
6565
- For "Provider name", enter a name for the provider.
6666
- For "Issuer (URL)", enter the following URL, replacing `HOSTNAME` with the public hostname for {% data variables.location.product_location_enterprise %}:
6767

68-
``` <!-- markdownlint-disable-line fenced-code-language -->
68+
```text
6969
https://HOSTNAME/_services/token
7070
```
7171
7272
For example:
7373
74-
``` <!-- markdownlint-disable-line fenced-code-language -->
74+
```text
7575
https://my-ghes-host.example.com/_services/token
7676
```
7777
@@ -83,13 +83,13 @@ To configure {% data variables.product.prodname_ghe_server %} to use OIDC with G
8383
- Under "Attribute Conditions", click **Add condition**.
8484
- For "Condition CEL", enter the following condition, replacing `HOSTNAME` with the public hostname for {% data variables.location.product_location_enterprise %}:
8585
86-
``` <!-- markdownlint-disable-line fenced-code-language -->
86+
```text
8787
google.subject == "HOSTNAME"
8888
```
8989
9090
For example:
9191
92-
``` <!-- markdownlint-disable-line fenced-code-language -->
92+
```text
9393
google.subject == "my-ghes-host.example.com"
9494
```
9595

content/admin/github-actions/enabling-github-actions-for-github-enterprise-server/managing-self-hosted-runners-for-dependabot-updates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The CPU and memory requirements will depend on the number of concurrent runners
5252

5353
If you specify more than 14 concurrent runners on a VM, you must also update the Docker `/etc/docker/daemon.json` configuration to increase the default number of networks Docker can create.
5454

55-
``` <!-- markdownlint-disable-line fenced-code-language -->
55+
```json
5656
{
5757
"default-address-pools": [
5858
{"base":"10.10.0.0/16","size":24}

content/admin/github-actions/managing-access-to-actions-from-githubcom/setting-up-the-tool-cache-on-self-hosted-runners-without-internet-access.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ You can populate the runner tool cache by running a {% data variables.product.pr
8080

8181
After extracting the tool cache artifact uploaded in the above example, you should have a directory structure on your self-hosted runner that is similar to the following example:
8282

83-
``` <!-- markdownlint-disable-line fenced-code-language -->
83+
```text
8484
RUNNER_DIR
8585
├── ...
8686
└── _work

0 commit comments

Comments
 (0)