mirror of
https://github.com/suyiiyii/SIMS.git
synced 2025-06-03 12:56:10 +08:00
21 lines
470 B
YAML
21 lines
470 B
YAML
name: Gitea Sync
|
|
on:
|
|
push:
|
|
branches: [ "main", "manifest" ]
|
|
workflow_dispatch:
|
|
workflow_run:
|
|
workflows: ["Docker Build and Publish"]
|
|
types:
|
|
- completed
|
|
|
|
|
|
jobs:
|
|
trigger-gitea-sync:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Trigger Gitea sync
|
|
run: |
|
|
echo "Triggering Gitea sync"
|
|
curl 'https://git.suyiiyii.top/api/v1/repos/ssyg/SIMS/mirror-sync' -X POST -H 'Authorization: token ${{ secrets.GITEATOKEN }}'
|
|
|