Skip to content

Commit 4f27584

Browse files
committed
adjusted wording
1 parent ba5814b commit 4f27584

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

articles/container-registry/container-registry-tasks-overview.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Learn how to use quick tasks in the first ACR Tasks tutorial, [Build container i
4747
4848
## Trigger task on source code update
4949

50-
Trigger a container image build or multi-step task when code is committed, or a pull request is made or updated, to a Git repository in GitHub or Azure DevOps. For example, configure a build task with the Azure CLI command [az acr task create][az-acr-task-create] by specifying a Git repository and optionally a branch and Dockerfile. When your team updates code in the repository, an ACR Tasks-created webhook triggers a build of the container image defined in the repo.
50+
Trigger a container image build or multi-step task when code is committed, or a pull request is made or updated, to a public or private Git repository in GitHub or Azure DevOps. For example, configure a build task with the Azure CLI command [az acr task create][az-acr-task-create] by specifying a Git repository and optionally a branch and Dockerfile. When your team updates code in the repository, an ACR Tasks-created webhook triggers a build of the container image defined in the repo.
5151

5252
ACR Tasks supports the following triggers when you set a Git repo as the task's context:
5353

@@ -58,6 +58,9 @@ ACR Tasks supports the following triggers when you set a Git repo as the task's
5858

5959
To configure the trigger, you provide the task a personal access token (PAT) to set the webhook in the GitHub or Azure DevOps repo.
6060

61+
> [!NOTE]
62+
> Currently, ACR Tasks doesn't support commit or pull request triggers in GitHub Enterprise repos.
63+
6164
Learn how to trigger builds on source code commit in the second ACR Tasks tutorial, [Automate container image builds with Azure Container Registry Tasks](container-registry-tutorial-build-task.md).
6265

6366
## Automate OS and framework patching
@@ -117,9 +120,6 @@ The following table shows a few examples of supported context locations for ACR
117120
| Azure DevOps subfolder | Files within a subfolder in a public or private Azure repo. Example shows combination of branch and subfolder specification. | `https://dev.azure.com/user/myproject/_git/myapp-repo#mybranch:myfolder` |
118121
| Remote tarball | Files in a compressed archive on a remote webserver. | `http://remoteserver/myapp.tar.gz` |
119122

120-
> [!NOTE]
121-
> Currently GitHub Enterprise repos aren't supported contexts for ACR Tasks.
122-
123123
## Image platforms
124124

125125
By default, ACR Tasks builds images for the Linux OS and the amd64 architecture. Specify the `--platform` tag to build Windows images or Linux images for other architectures. Specify the OS and optionally a supported architecture in OS/architecture format (for example, `--platform Linux/arm`). For ARM architectures, optionally specify a variant in OS/architecture/variant format (for example, `--platform Linux/arm64/v8`):

articles/container-registry/container-registry-tutorial-build-task.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.custom: "seodec18, mvc"
1313
In addition to a [quick task](container-registry-tutorial-quick-task.md), ACR Tasks supports automated Docker container image builds in the cloud when you commit source code to a Git repository. Supported Git contexts for ACR Tasks include public or private GitHub or Azure repos.
1414

1515
> [!NOTE]
16-
> Currently GitHub Enterprise repos aren't supported contexts for ACR Tasks.
16+
> Currently, ACR Tasks doesn't support commit or pull request triggers in GitHub Enterprise repos.
1717
1818
In this tutorial, your ACR task builds and pushes a single container image specified in a Dockerfile when you commit source code to a Git repo. To create a [multi-step task](container-registry-tasks-multi-step.md) that uses a YAML file to define steps to build, push, and optionally test multiple containers on code commit, see [Tutorial: Run a multi-step container workflow in the cloud when you commit source code](container-registry-tutorial-multistep-task.md). For an overview of ACR Tasks, see [Automate OS and framework patching with ACR Tasks](container-registry-tasks-overview.md)
1919

0 commit comments

Comments
 (0)