blob: ddb2723fee2da438aba5a962d379b5900741ddc8 (
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
26
|
name: Doxygen Generation
on:
push:
branches: [ main, 'develop' ]
paths-ignore:
- 'resource/locale/template/**'
- 'manual/**'
- '**.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}}"
}
|