1
0
mirror of synced 2025-12-23 11:54:18 -05:00

Fix for blank lines around code fences (#38255)

This commit is contained in:
Grace Park
2023-06-26 10:21:48 -07:00
committed by GitHub
parent a4913b5935
commit a8a6e4554a
272 changed files with 1552 additions and 2 deletions

View File

@@ -31,6 +31,7 @@ To restore a backup of {% data variables.location.product_location %} with {% da
```shell copy
ssh -p 122 admin@HOSTNAME
```
1. Configure the destination instance to use the same external storage service for {% data variables.product.prodname_actions %} as the source instance by entering one of the following commands.
{% indented_data_reference reusables.actions.configure-storage-provider-platform-commands spaces=3 %}
{% data reusables.actions.configure-storage-provider %}
@@ -39,6 +40,7 @@ To restore a backup of {% data variables.location.product_location %} with {% da
```shell copy
ghe-config app.actions.enabled true
```
{% data reusables.actions.apply-configuration-and-enable %}
1. After {% data variables.product.prodname_actions %} is configured and enabled, to restore the rest of the data from the backup, use the `ghe-restore` command. For more information, see "[AUTOTITLE](/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance#restoring-a-backup)."
1. Re-register your self-hosted runners on the destination instance. For more information, see "[AUTOTITLE](/actions/hosting-your-own-runners/managing-self-hosted-runners/adding-self-hosted-runners)."

View File

@@ -150,6 +150,7 @@ If any of these services are at or near 100% CPU utilization, or the memory is n
}
}
```
1. Save and exit the file.
1. Run `ghe-config-apply` to apply the changes.
@@ -175,13 +176,17 @@ There are three ways to resolve this problem:
1. Log in to the administrative shell using SSH. For more information, see "[AUTOTITLE](/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh)."
1. To remove the limitations on workflows triggered by {% data variables.product.prodname_dependabot %} on {% data variables.location.product_location %}, use the following command.
``` shell
ghe-config app.actions.disable-dependabot-enforcement true
```
1. Apply the configuration.
```shell
ghe-config-apply
```
1. Return to {% data variables.product.prodname_ghe_server %}.
{% endif %}
@@ -204,18 +209,25 @@ To install the official bundled actions and starter workflows within a designate
1. Log in to the administrative shell using SSH. For more information, see "[AUTOTITLE](/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh)."
1. To designate your organization as the location to store the bundled actions, use the `ghe-config` command, replacing `ORGANIZATION` with the name of your organization.
```shell
ghe-config app.actions.actions-org ORGANIZATION
```
and:
```shell
ghe-config app.actions.github-org ORGANIZATION
```
1. To add the bundled actions to your organization, unset the SHA.
```shell
ghe-config --unset 'app.actions.actions-repos-sha1sum'
```
1. Apply the configuration.
```shell
ghe-config-apply
```

View File

@@ -45,6 +45,7 @@ To more accurately mirror your production environment, you can optionally copy f
```shell
azcopy copy 'https://<em>SOURCE-STORAGE-ACCOUNT-NAME</em>.blob.core.windows.net/<em>SAS-TOKEN</em>' 'https://<em>DESTINATION-STORAGE-ACCOUNT-NAME</em>.blob.core.windows.net/' --recursive
```
- For Amazon S3 buckets, you can use [`aws s3 sync`](https://awscli.amazonaws.com/v2/documentation/api/latest/reference/s3/sync.html). For example:
```shell