WFLY-19605 Add a CI job to check for non-i18n INFO/WARN/ERROR logging #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check PR Logging | |
on: | |
push: | |
branches: | |
- WFLY-19605 | |
jobs: | |
check-logging: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set execute permission | |
run: chmod +x check_logging.sh | |
- name: Run logging check | |
run: ./check_logging.sh |