You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
522 B

  1. name: Integration testing
  2. on:
  3. push:
  4. branches:
  5. - master
  6. jobs:
  7. trigger-integration:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - name: send event to integration-testing
  11. run: |
  12. curl -X POST https://api.github.com/repos/hermeznetwork/integration-testing/actions/workflows/update.yml/dispatches \
  13. -H 'Accept: application/vnd.github.v3+json' \
  14. -u ${{ secrets.INT_BOT_ACCESS_TOKEN }} \
  15. --data '{"ref":"main","inputs": {"repository": "hermeznetwork/hermez-node"}}'