Skip to content

Commit 9f6d3b1

Browse files
authored
Enterprise bug fixes for the week of April 18, 2022 (github#27124)
1 parent f63c70d commit 9f6d3b1

File tree

6 files changed

+14
-12
lines changed

6 files changed

+14
-12
lines changed

content/admin/github-actions/enabling-github-actions-for-github-enterprise-server/enabling-github-actions-with-minio-gateway-for-nas-storage.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,14 @@ redirect_from:
1414
- /admin/github-actions/enabling-github-actions-with-minio-gateway-for-nas-storage
1515
shortTitle: MinIO Gateway for NAS storage
1616
---
17-
## Prerequisites
1817

19-
{% data reusables.actions.enterprise-s3-support-warning %}
18+
{% warning %}
19+
20+
**Warning**: MinIO has announced removal of MinIO Gateways. Starting June 1st, 2022, support and bug fixes for the current MinIO NAS Gateway implementation will only be available for paid customers via their LTS support contract. If you want to continue using MinIO Gateways with {% data variables.product.prodname_actions %}, we recommend moving to MinIO LTS support. For more information, see [Scheduled removal of MinIO Gateway for GCS, Azure, HDFS](https://github.com/minio/minio/issues/14331) in the minio/minio repository.
21+
22+
{% endwarning %}
23+
24+
## Prerequisites
2025

2126
Before enabling {% data variables.product.prodname_actions %}, make sure you have completed the following steps:
2227

content/admin/github-actions/managing-access-to-actions-from-githubcom/about-using-actions-in-your-enterprise.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Each action is a repository in the `actions` organization, and each action repos
4848

4949
**Notes:**
5050
- When using setup actions (such as `actions/setup-LANGUAGE`) on {% data variables.product.product_name %} with self-hosted runners, you might need to set up the tools cache on runners that do not have internet access. For more information, see "[Setting up the tool cache on self-hosted runners without internet access](/enterprise/admin/github-actions/setting-up-the-tool-cache-on-self-hosted-runners-without-internet-access)."
51-
- Upgrades to {% data variables.product.product_name %} will not result in the bundled actions being updated.
51+
- Bundled actions are automatically updated when {% data variables.product.product_name %} is updated.
5252

5353
{% endnote %}
5454

content/developers/apps/building-oauth-apps/scopes-for-oauth-apps.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ Name | Description
6666
 `user:follow`| Grants access to follow or unfollow other users.
6767
**`delete_repo`** | Grants access to delete adminable repositories.
6868
**`write:discussion`** | Allows read and write access for team discussions.
69-
 `read:discussion` | Allows read access for team discussions.{% ifversion fpt or ghae or ghec %}
69+
 `read:discussion` | Allows read access for team discussions.
7070
**`write:packages`** | Grants access to upload or publish a package in {% data variables.product.prodname_registry %}. For more information, see "[Publishing a package](/github/managing-packages-with-github-packages/publishing-a-package)".
71-
**`read:packages`** | Grants access to download or install packages from {% data variables.product.prodname_registry %}. For more information, see "[Installing a package](/github/managing-packages-with-github-packages/installing-a-package)".
71+
**`read:packages`** | Grants access to download or install packages from {% data variables.product.prodname_registry %}. For more information, see "[Installing a package](/github/managing-packages-with-github-packages/installing-a-package)".{% ifversion fpt or ghec or ghes > 3.1 or ghae %}
7272
**`delete:packages`** | Grants access to delete packages from {% data variables.product.prodname_registry %}. For more information, see "[Deleting and restoring a package](/packages/learn-github-packages/deleting-and-restoring-a-package)."{% endif %}
7373
**`admin:gpg_key`** | Fully manage GPG keys.
7474
 `write:gpg_key`| Create, list, and view details for GPG keys.

content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -810,8 +810,6 @@ Key | Type | Description
810810
811811
{% endif %}
812812
813-
{% ifversion fpt or ghae or ghec %}
814-
815813
## package
816814
817815
Activity related to {% data variables.product.prodname_registry %}. {% data reusables.webhooks.action_type_desc %} For more information, see "[Managing packages with {% data variables.product.prodname_registry %}](/github/managing-packages-with-github-packages)" to learn more about {% data variables.product.prodname_registry %}.
@@ -831,7 +829,6 @@ Activity related to {% data variables.product.prodname_registry %}. {% data reus
831829
### Webhook payload example
832830
833831
{{ webhookPayloadsForCurrentVersion.package.published }}
834-
{% endif %}
835832
836833
## page_build
837834

content/packages/learn-github-packages/introduction-to-github-packages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ shortTitle: Introduction
2323

2424
## About {% data variables.product.prodname_registry %}
2525

26-
{% data variables.product.prodname_registry %} is a platform for hosting and managing packages, including containers and other dependencies. {% data variables.product.prodname_registry %} combines your source code and packages in one place to provide integrated permissions management{% ifversion not ghae %} and billing{% endif %}, so you can centralize your software development on {% data variables.product.product_name %}.
26+
{% data variables.product.prodname_registry %} is a platform for hosting and managing packages, including containers and other dependencies. {% data variables.product.prodname_registry %} combines your source code and packages in one place to provide integrated permissions management{% ifversion fpt or ghec %} and billing{% endif %}, so you can centralize your software development on {% data variables.product.product_name %}.
2727

2828
You can integrate {% data variables.product.prodname_registry %} with {% ifversion fpt or ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} APIs, {% data variables.product.prodname_actions %}, and webhooks to create an end-to-end DevOps workflow that includes your code, CI, and deployment solutions.
2929

content/packages/quickstart.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ In this guide, you'll create a {% data variables.product.prodname_actions %} wor
2121
1. Create a new repository on {% data variables.product.prodname_dotcom %}, adding the `.gitignore` for Node. For more information, see "[Creating a new repository](/github/creating-cloning-and-archiving-repositories/creating-a-new-repository)."
2222
2. Clone the repository to your local machine.
2323
```shell
24-
$ git clone https://{% ifversion ghae %}<em>YOUR-HOSTNAME</em>{% else %}github.com{% endif %}/<em>YOUR-USERNAME</em>/<em>YOUR-REPOSITORY</em>.git
24+
$ git clone https://{% ifversion ghes or ghae %}<em>YOUR-HOSTNAME</em>{% else %}github.com{% endif %}/<em>YOUR-USERNAME</em>/<em>YOUR-REPOSITORY</em>.git
2525
$ cd <em>YOUR-REPOSITORY</em>
2626
```
2727
3. Create an `index.js` file and add a basic alert to say "Hello world!"
@@ -49,7 +49,7 @@ In this guide, you'll create a {% data variables.product.prodname_actions %} wor
4949
$ git push
5050
```
5151
6. Create a `.github/workflows` directory. In that directory, create a file named `release-package.yml`.
52-
7. Copy the following YAML content into the `release-package.yml` file{% ifversion ghae %}, replacing `YOUR-HOSTNAME` with the name of your enterprise{% endif %}.
52+
7. Copy the following YAML content into the `release-package.yml` file{% ifversion ghes or ghae %}, replacing `YOUR-HOSTNAME` with the name of your enterprise{% endif %}.
5353
```yaml{:copy}
5454
name: Node.js Package
5555
@@ -79,7 +79,7 @@ In this guide, you'll create a {% data variables.product.prodname_actions %} wor
7979
- uses: {% data reusables.actions.action-setup-node %}
8080
with:
8181
node-version: 12
82-
registry-url: {% ifversion ghae %}https://npm.YOUR-HOSTNAME.com/{% else %}https://npm.pkg.github.com/{% endif %}
82+
registry-url: {% ifversion ghes or ghae %}https://npm.YOUR-HOSTNAME.com/{% else %}https://npm.pkg.github.com/{% endif %}
8383
- run: npm ci
8484
- run: npm publish
8585
env:

0 commit comments

Comments
 (0)