mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
22 lines
522 B
YAML
22 lines
522 B
YAML
name: Trigger sync of conf
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main #always
|
|
|
|
jobs:
|
|
trigger:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
repository-projects: write
|
|
steps:
|
|
- name: Trigger Sync
|
|
run: |
|
|
curl -X POST -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
|
|
-H "Accept: application/vnd.github.v3+json" \
|
|
https://api.github.com/repos/stefanpejcic/OpenPanel/dispatches \
|
|
-d '{"event_type":"sync-configuration"}'
|