mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-22 08:38:13 +02:00
refactor: change pipecat to submodule & add github alerts
This commit is contained in:
parent
08d1e544ec
commit
6562963018
8 changed files with 249 additions and 3 deletions
23
.github/workflows/check-pipecat-sync.yml
vendored
Normal file
23
.github/workflows/check-pipecat-sync.yml
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
name: Check Pipecat Version Sync
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types: [opened, synchronize, reopened]
|
||||
|
||||
jobs:
|
||||
check-sync:
|
||||
name: Verify Pipecat Versions Match
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: true
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Make scripts executable
|
||||
run: chmod +x scripts/*.sh
|
||||
|
||||
- name: Check pipecat version synchronization
|
||||
run: ./scripts/check-pipecat-sync.sh
|
||||
Loading…
Add table
Add a link
Reference in a new issue