fix(meet): forward wake phrase for active meeting bots #14676
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: PR Quality (soft) | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, labeled, unlabeled, edited] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| packages: read | |
| pull-requests: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| # All three jobs are `continue-on-error: true` for the first ~2 weeks after | |
| # this workflow lands, so we can tune the parsers + matrix gates without | |
| # blocking merges. Flip to hard-fail once the false-positive rate is stable. | |
| checklist-guard: | |
| name: PR Submission Checklist | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 10 | |
| container: | |
| image: ghcr.io/tinyhumansai/openhuman_ci:rust-1.93.0 | |
| continue-on-error: true | |
| if: ${{ !contains(github.event.pull_request.labels.*.name, 'docs') && !contains(github.event.pull_request.labels.*.name, 'chore') }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 1 | |
| - name: Verify Submission Checklist | |
| env: | |
| PR_BODY: ${{ github.event.pull_request.body }} | |
| run: node scripts/check-pr-checklist.mjs | |
| coverage-matrix: | |
| name: Coverage Matrix Sync | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 10 | |
| container: | |
| image: ghcr.io/tinyhumansai/openhuman_ci:rust-1.93.0 | |
| continue-on-error: true | |
| if: ${{ !contains(github.event.pull_request.labels.*.name, 'docs') && !contains(github.event.pull_request.labels.*.name, 'chore') }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 1 | |
| - name: Verify Coverage Matrix | |
| run: node scripts/check-coverage-matrix.mjs | |
| markdown-link-check: | |
| name: Markdown Link Check | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| continue-on-error: true | |
| if: ${{ !contains(github.event.pull_request.labels.*.name, 'docs') && !contains(github.event.pull_request.labels.*.name, 'chore') }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 1 | |
| - name: Lychee link check | |
| uses: lycheeverse/lychee-action@v2 | |
| with: | |
| args: >- | |
| --no-progress | |
| --include-fragments | |
| --exclude '^http://localhost' | |
| --exclude '^https?://127\.0\.0\.1' | |
| --exclude 'docs/install\.md#apt-debianubuntu$' | |
| --exclude '^https://github\.com/tinyhumansai/homebrew-openhuman' | |
| 'docs/**/*.md' | |
| 'src/**/README.md' | |
| '.github/PULL_REQUEST_TEMPLATE.md' | |
| fail: true | |
| appimage-rpath-guard: | |
| name: AppImage RPATH + libxdo guard | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| continue-on-error: true | |
| if: ${{ !contains(github.event.pull_request.labels.*.name, 'docs') && !contains(github.event.pull_request.labels.*.name, 'chore') }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 1 | |
| - name: Install patchelf | |
| run: sudo apt-get update -qq && sudo apt-get install -y -qq patchelf | |
| - name: Syntax check release script | |
| run: bash -n scripts/release/strip-appimage-graphics-libs.sh | |
| - name: Run AppImage RPATH sanitize + libxdo guard test (issue #3224) | |
| run: bash scripts/release/test-strip-appimage-rpaths.sh |