blob: c23da8d288dbf298604267a3f8eb370c9b642716 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
name: Doxygen Generation
on:
push:
branches: [ main, 'develop' ]
paths-ignore:
- 'resource/lfs/locale/**'
- '**.md'
jobs:
build:
name: Dispatch to GpgFrontend-Doxygen
runs-on: ubuntu-latest
steps:
- name: Emit repository_dispatch
uses: mvasigh/dispatch-action@main
with:
token: ${{ secrets.API_TOKEN_GITHUB }}
repo: GpgFrontend-Doxygen
owner: saturneric
event_type: CodePush
message: |
{
"branch": "${{github.ref}}"
}
|