index on master: bc3718ecf build(ready4upload): mandatory preflight; … #2
This file contains hidden or 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: DB Naming On Version Bump | |
| on: | |
| push: | |
| paths: | |
| - "appinfo/info.xml" | |
| - "lib/Migration/**" | |
| - "scripts/check-db-naming.sh" | |
| pull_request: | |
| paths: | |
| - "appinfo/info.xml" | |
| - "lib/Migration/**" | |
| - "scripts/check-db-naming.sh" | |
| jobs: | |
| naming-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install ripgrep | |
| run: sudo apt-get update && sudo apt-get install -y ripgrep | |
| - name: Verify DB naming conventions | |
| run: bash scripts/check-db-naming.sh |