diff options
-rw-r--r-- | .github/workflows/trigger-doxygen-genration.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/trigger-doxygen-genration.yml b/.github/workflows/trigger-doxygen-genration.yml new file mode 100644 index 00000000..b2451781 --- /dev/null +++ b/.github/workflows/trigger-doxygen-genration.yml @@ -0,0 +1,26 @@ +name: Doxygen Generation + +on: + push: + branches: [ main, 'develop-**', 'dev/**' ] + paths-ignore: + - 'resource/locale/template/**' + - 'docs/**' + - '**.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}}" + }
\ No newline at end of file |