Bladeren bron

Does not check translations due to file size limit

John Washam 2 jaren geleden
bovenliggende
commit
c7f69947f4
1 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  1. 2 2
      .github/workflows/links_checker.yml

+ 2 - 2
.github/workflows/links_checker.yml

@@ -18,7 +18,7 @@ jobs:
       ## Check out code using Git
       - uses: actions/checkout@v3
 
-      - name: Check all links at README.md and translations files
+      - name: Check all links at README.md but skips translations files
         id: lychee
         uses: lycheeverse/lychee-action@v1.4.1
         with:
@@ -35,7 +35,7 @@ jobs:
             --timeout 20
             --max-concurrency 10
             --no-progress
-            README.md translations/*.md
+            README.md
         env:
           ## Avoid rate limiting when checking github.com links
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}