I push a single package to the GithubPackageRepository and the workflow (with following action.yml) is triggered six times. Any ideas what’s the problem with this workflow or how can i decrease the trigger count to one.
name: Trigger - new package uploaded
on: [registry_package]
jobs:
createRepositoryDispatch:
runs-on: ubuntu-latest
steps:
-uses: actions/checkout@v2
-run: echo ${{ github.event.action }}
The echo-output is ‘published’ on every triggered workflow? Furthermore there is no documentation about this trigger-event?
Thank you in advance for any help!