From 7141c710c8b3ab2d1d3b111f6bdb6d5ec64bbda2 Mon Sep 17 00:00:00 2001 From: Marian Triebe Date: Sat, 5 Jun 2021 10:17:32 +0200 Subject: [PATCH] Fix example in github-action.md The repository of crate-ci/typos does not have a "main" branch, "master" is used instead. --- docs/github-action.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/github-action.md b/docs/github-action.md index 8f5e817..b3a2b98 100644 --- a/docs/github-action.md +++ b/docs/github-action.md @@ -17,18 +17,18 @@ jobs: uses: actions/checkout@v2 - name: Check spelling of file.txt - uses: crate-ci/typos@main + uses: crate-ci/typos@master with: files: ./file.txt - name: Use custom config file - uses: crate-ci/typos@main + uses: crate-ci/typos@master with: files: ./file.txt config: ./myconfig.toml - name: Ignore implicit configuration file - uses: crate-ci/typos@main + uses: crate-ci/typos@master with: files: ./file.txt isolated: true