mirror of
https://github.com/snowykami/server-status-web.git
synced 2025-06-04 22:25:23 +00:00
18 lines
474 B
YAML
18 lines
474 B
YAML
name: Trigger Backend Workflow
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
trigger-backend:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Trigger backend workflow
|
|
run: |
|
|
curl -X POST \
|
|
-H "Accept: application/vnd.github.v3+json" \
|
|
-H "Authorization: token ${{ secrets.GHP }}" \
|
|
https://api.github.com/repos/snowykami/server-status-server/dispatches \
|
|
-d '{"event_type":"trigger-backend-workflow"}' |