diff --git a/.github/workflows/azure-preview-env-deploy.yml b/.github/workflows/azure-preview-env-deploy.yml index 72d580c0090a..63c21be31a22 100644 --- a/.github/workflows/azure-preview-env-deploy.yml +++ b/.github/workflows/azure-preview-env-deploy.yml @@ -198,7 +198,16 @@ jobs: # Deploy ARM template is idempotent # Note: once the resources exist the image tag must change for a new deployment to occur (the image tag includes workflow run number, run attempt, as well as sha) - name: Run ARM deploy - id: deploy + # This 'if' will be truth, if this workflow is... + # - run as a workflow_dispatch + # - run because of a push to main (or gh-readonly-queue/main) + # - run as a regular pull request + # But if it's a pull request, *and* for whatever reason, the pull + # request has "Auto-merge" enabled, don't bother. + # The idea is that if auto-merge has been abled, by humans or by + # bots, they have no intention of viewing the deployed preview anyway. + # This saves time because the PR can merge sooner. + if: ${{ !github.event.pull_request.auto_merge }} uses: azure/arm-deploy@841b12551939c88af8f6df767c24c38a5620fd0d with: resourceGroupName: ${{ secrets.PREVIEW_ENV_RESOURCE_GROUP }} diff --git a/data/release-notes/enterprise-server/3-5/0-rc1.yml b/data/release-notes/enterprise-server/3-5/0-rc1.yml index 31567083ba3d..de4674ef97d7 100644 --- a/data/release-notes/enterprise-server/3-5/0-rc1.yml +++ b/data/release-notes/enterprise-server/3-5/0-rc1.yml @@ -391,6 +391,11 @@ sections: - | Creating and removing repository invitations, whether done through the API or web interface, are now subject to rate limits that may be enabled on your GitHub Enterprise Server instance. For more information about rate limits, see "[Configuring rate limits](/admin/configuration/configuring-your-enterprise/configuring-rate-limits)." + # https://github.com/github/releases/issues/2291 + - | + MinIO has announced the removal of the MinIO Gateways starting June 1st, 2022. While MinIO Gateway for NAS continues to be one of the supported storage providers for Github Actions and Github Packages, we recommend moving to MinIO LTS support to avail support and bug fixes from MinIO. For more information about rate limits, see "[Scheduled removal of MinIO Gateway for GCS, Azure, HDFS in the minio/minio repository](https://github.com/minio/minio/issues/14331)." + + deprecations: - heading: Change to the format of authentication tokens notes: @@ -417,4 +422,4 @@ sections: - When "Users can search GitHub.com" is enabled with GitHub Connect, issues in private and internal repositories are not included in GitHub.com search results. - The {% data variables.product.prodname_registry %} npm registry no longer returns a time value in metadata responses. This was done to allow for substantial performance improvements. We continue to have all the data necessary to return a time value as part of the metadata response and will resume returning this value in the future once we have solved the existing performance issues. - Resource limits that are specific to processing pre-receive hooks may cause some pre-receive hooks to fail. - - Actions services need to be restarted after restoring an appliance from a backup taken on a different host. \ No newline at end of file + - Actions services need to be restarted after restoring an appliance from a backup taken on a different host.