diff options
author | Saturneric <[email protected]> | 2022-05-08 22:21:21 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-05-08 22:35:52 +0000 |
commit | 9da6797a7ae3bc74869ac75df01cf6af9b2bcb11 (patch) | |
tree | eaf7f27cdb5cb779a1352e24a1996c802d355ca0 | |
parent | feat: add full support for xocde build (diff) | |
download | GpgFrontend-9da6797a7ae3bc74869ac75df01cf6af9b2bcb11.tar.gz GpgFrontend-9da6797a7ae3bc74869ac75df01cf6af9b2bcb11.zip |
feat: trigger GpgFrontend-Doxygen generation
-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 |