feat: Add GitHub Actions workflow to notify Letta Cloud on main branch pushes (#2337)
This commit is contained in:
committed by
GitHub
parent
35f1443583
commit
0d31c4da1c
19
.github/workflows/notify-letta-cloud.yml
vendored
Normal file
19
.github/workflows/notify-letta-cloud.yml
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
name: Notify Letta Cloud
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
notify:
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ !contains(github.event.head_commit.message, '[sync-skip]') }}
|
||||
steps:
|
||||
- name: Trigger repository_dispatch
|
||||
run: |
|
||||
curl -X POST \
|
||||
-H "Authorization: token ${{ secrets.SYNC_PAT }}" \
|
||||
-H "Accept: application/vnd.github.v3+json" \
|
||||
https://api.github.com/repos/letta-ai/letta-cloud/dispatches \
|
||||
-d '{"event_type":"oss-update"}'
|
||||
Reference in New Issue
Block a user