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

Remove unnecessary $ (#38339)

This commit is contained in:
Grace Park
2023-06-26 10:02:44 -07:00
committed by GitHub
parent a04dc81b53
commit bd760a6d0a
125 changed files with 383 additions and 383 deletions

View File

@@ -29,7 +29,7 @@ To restore a backup of {% data variables.location.product_location %} with {% da
1. SSH into the destination instance. For more information, see "[AUTOTITLE](/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh)."
```shell copy
$ ssh -p 122 admin@HOSTNAME
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 %}

View File

@@ -176,11 +176,11 @@ 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
ghe-config app.actions.disable-dependabot-enforcement true
```
1. Apply the configuration.
```shell
$ ghe-config-apply
ghe-config-apply
```
1. Return to {% data variables.product.prodname_ghe_server %}.
@@ -205,19 +205,19 @@ 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
ghe-config app.actions.actions-org ORGANIZATION
```
and:
```shell
$ ghe-config app.actions.github-org ORGANIZATION
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'
ghe-config --unset 'app.actions.actions-repos-sha1sum'
```
1. Apply the configuration.
```shell
$ ghe-config-apply
ghe-config-apply
```
After you've completed these steps, you can resume configuring {% data variables.product.prodname_actions %} at "[AUTOTITLE](/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-github-actions-for-github-enterprise-server#managing-access-permissions-for-github-actions-in-your-enterprise)."