Gate the live chord display through the segmenter's stability judgment #1444
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: on pull request | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| merge_group: | |
| types: | |
| - checks_requested | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| detect_changed_files: | |
| name: detect changed files | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| uses: EarthmanMuons/reusable-workflows/.github/workflows/detect-changed-files.yml@main | |
| check_css: | |
| name: check css | |
| needs: detect_changed_files | |
| if: needs.detect_changed_files.outputs.css == 'true' | |
| uses: EarthmanMuons/reusable-workflows/.github/workflows/check-css.yml@main | |
| with: | |
| files: ${{ needs.detect_changed_files.outputs.css_files }} | |
| check_flutter: | |
| name: check flutter | |
| needs: detect_changed_files | |
| if: needs.detect_changed_files.outputs.flutter == 'true' | |
| uses: EarthmanMuons/reusable-workflows/.github/workflows/check-flutter.yml@main | |
| check_github_actions: | |
| name: check github actions | |
| needs: detect_changed_files | |
| if: needs.detect_changed_files.outputs.github_actions == 'true' | |
| uses: EarthmanMuons/reusable-workflows/.github/workflows/check-github-actions.yml@main | |
| check_html: | |
| name: check html | |
| needs: detect_changed_files | |
| if: needs.detect_changed_files.outputs.html == 'true' | |
| uses: EarthmanMuons/reusable-workflows/.github/workflows/check-html.yml@main | |
| with: | |
| files: ${{ needs.detect_changed_files.outputs.html_files }} | |
| prettier_plugins: prettier-plugin-astro | |
| check_markdown: | |
| name: check markdown | |
| needs: detect_changed_files | |
| if: needs.detect_changed_files.outputs.markdown == 'true' | |
| uses: EarthmanMuons/reusable-workflows/.github/workflows/check-markdown.yml@main | |
| with: | |
| files: ${{ needs.detect_changed_files.outputs.markdown_files }} | |
| prettier_plugins: prettier-plugin-astro | |
| check_python: | |
| name: check python | |
| needs: detect_changed_files | |
| if: needs.detect_changed_files.outputs.python == 'true' | |
| uses: EarthmanMuons/reusable-workflows/.github/workflows/check-python.yml@main | |
| with: | |
| files: ${{ needs.detect_changed_files.outputs.python_files }} | |
| check_spelling: | |
| name: check spelling | |
| needs: detect_changed_files | |
| if: needs.detect_changed_files.outputs.added_or_modified == 'true' | |
| uses: EarthmanMuons/reusable-workflows/.github/workflows/check-spelling.yml@main | |
| ready_to_merge: | |
| name: ready to merge | |
| needs: | |
| - detect_changed_files | |
| - check_css | |
| - check_flutter | |
| - check_github_actions | |
| - check_html | |
| - check_markdown | |
| - check_python | |
| - check_spelling | |
| if: always() | |
| uses: EarthmanMuons/reusable-workflows/.github/workflows/ready-to-merge.yml@main | |
| with: | |
| needs_context: ${{ toJson(needs) }} |