feat: Add Hyperparameter the GetGroups call with aggregate values #2631
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: "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 |