Skip to content

Commit

Permalink
Use LOGTOCS\!
Browse files Browse the repository at this point in the history
  • Loading branch information
mdeweerd committed Feb 18, 2024
1 parent 42be28e commit be2f31a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: |
python ${LOG_TO_CS} ${RAW_LOG} ${CS_XML}
- name: Convert Raw Log to Checkstyle format (launch action)
uses: mdeweerd/logToCheckStyle@test8
uses: mdeweerd/logToCheckStyle@test9
if: ${{ failure() }}
with:
in: ${{ env.RAW_LOG }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ optional arguments:
```yaml
- name: Convert Raw Log to Checkstyle format (launch action)
uses: mdeweerd/logToCheckStyle@test8
uses: mdeweerd/logToCheckStyle@test9
if: ${{ failure() }}
with:
in: ${{ env.RAW_LOG }}
Expand Down
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ esac

[ "$4" = "true" ] && ANNOTATE="--github-annotate"
[ "$4" = "false" ] && ANNOTATE="--no-github-annotate"
[ "$3" = "" ] && python ./logToCs.py "$1" "$2" --root "$PWD" ${ANNOTATE} && exit 0
[ "$3" != "" ] && python ./logToCs.py "$1" "$2" --root "$3" ${ANNOTATE} && exit 0
[ "$3" = "" ] && python "${LOGTOCS}" "$1" "$2" --root "$PWD" ${ANNOTATE} && exit 0
[ "$3" != "" ] && python "${LOGTOCS}" "$1" "$2" --root "$3" ${ANNOTATE} && exit 0

0 comments on commit be2f31a

Please sign in to comment.