Skip to content

Commit

Permalink
✏️ Fix typo in syntax for using the GitHub Action tag directly (inste…
Browse files Browse the repository at this point in the history
…ad of with Docker) in README (#39)

Co-authored-by: Sebastián Ramírez <[email protected]>
  • Loading branch information
art049 and tiangolo authored Nov 2, 2023
1 parent 9a566ea commit 05613c0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
```YAML
# - uses: docker://tiangolo/latest-changes:0.1.0
# This is slower but also works
- uses: tiangolo/latest-changes:0.1.0
- uses: tiangolo/latest-changes@0.1.0
```
In this minimal example, it uses all the default configurations.
Expand Down Expand Up @@ -168,8 +168,8 @@ jobs:
latest-changes:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: tiangolo/latest-changes:0.1.0
- uses: actions/checkout@v2
- uses: tiangolo/latest-changes@0.1.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
latest_changes_file: docs/release-notes.md
Expand Down Expand Up @@ -204,7 +204,7 @@ In this custom config:
* It uses the GitHub action directly:

```
tiangolo/latest-changes:0.1.0
tiangolo/latest-changes@0.1.0
```
instead of with Docker:
Expand Down

0 comments on commit 05613c0

Please sign in to comment.