chore: refactor and test RBAC config policies work [CM-530] #2522
Workflow file for this run
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: "Lint migrations" | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
paths: | |
- master/static/migrations/** | |
types: | |
- opened | |
- edited | |
- synchronize | |
jobs: | |
lint-migrations: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run migration lint | |
run: ./.github/scripts/lint-migrations.sh | |
shell: bash |