Skip to content

Commit 3b57913

Browse files
authored
repo sync
2 parents 1ab220e + 3d8c9e5 commit 3b57913

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
You can require that members use SSH certificates to access organization resources,, unless SSH is disabled in your repository.
1+
You can require that members use SSH certificates to access organization resources, unless SSH is disabled in your repository.

0 commit comments

Comments
 (0)