Skip to content

Commit 1fb18ce

Browse files
authored
Merge branch 'main' into fix-2571
2 parents 6b3c91a + f57995c commit 1fb18ce

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

content/actions/learn-github-actions/finding-and-customizing-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ steps:
7979
8080
#### Using branches
8181
82-
Referring to a specific branch means that the action will always use the latest updates on the target branch, but can create problems if those updates include breaking changes. This example targets a branch named `@main`:
82+
Specifying a target branch for the action means it will always run the version currently on that branch. This approach can create problems if an update to the branch includes breaking changes. This example targets a branch named `@main`:
8383

8484
```yaml
8585
steps:

content/packages/guides/connecting-a-repository-to-a-container-image.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ https://github.com/monalisa/hello_docker
3333
1. In your Dockerfile, add this line, replacing `OWNER` and `REPO` with your details:
3434

3535
```shell
36-
LABEL org.opencontainers.image.source https://github.com/<em>OWNER</em>/<em>REPO</em>
36+
LABEL org.opencontainers.image.source=https://github.com/<em>OWNER</em>/<em>REPO</em>
3737
```
3838
For example, if you're the user `monalisa` and own `my-repo`, you would add this line to your Dockerfile:
3939
```shell
40-
LABEL org.opencontainers.image.source https://github.com/monalisa/my-repo
40+
LABEL org.opencontainers.image.source=https://github.com/monalisa/my-repo
4141
```
4242
For more information, see "[LABEL](https://docs.docker.com/engine/reference/builder/#label)" in the official Docker documentation and "[Pre-defined Annotation Keys](https://github.com/opencontainers/image-spec/blob/master/annotations.md#pre-defined-annotation-keys)" in the `opencontainers/image-spec` repository.
4343

0 commit comments

Comments
 (0)