Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcalexiei/review-dog-languagetool-playground
https://github.com/marcalexiei/review-dog-languagetool-playground
Last synced: 18 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/marcalexiei/review-dog-languagetool-playground
- Owner: marcalexiei
- Created: 2024-11-22T14:12:52.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-11-22T14:17:37.000Z (about 1 month ago)
- Last Synced: 2024-11-22T15:25:47.502Z (about 1 month ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Review dog language tool playground
react
typo arfgh2
I live to mke tyo
> [!NOTE]
> Repository to test out `reviewdog/action-languagetool` action behavior
>
> Related to [tuono CI](https://github.com/Valerioageno/tuono/pull/137#pullrequestreview-2455455272)## Downloading logs
The following script allows to download a zip containing the workflow logs
```sh
REPO="${{ github.repository }}"
RUN_ID="${{ github.run_id }}"curl -L \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/$REPO/actions/runs/$RUN_ID/jobs/$JOB_ID/logs \
-o job_logs.zip
```> [!TIP]
> We could use the logs to check for warning / error annotations,
however they wouldn't be accessible within the workflow run, so they should be download from another workflow
after previous workflow completion.