trigger-integration-tests.yml 751 B

123456789101112131415161718192021222324
  1. name: Integration testings on taipy-integration-testing
  2. on:
  3. push:
  4. branches: [ develop, dev/* ]
  5. pull_request:
  6. branches: [ develop , dev/* ]
  7. jobs:
  8. build:
  9. runs-on: ubuntu-latest
  10. steps:
  11. - name: Trigger taipy-integration-testing
  12. uses: convictional/trigger-workflow-and-wait@v1.6.1
  13. with:
  14. owner: Avaiga
  15. repo: taipy-integration-testing
  16. github_token: ${{secrets.TAIPY_INTEGRATION_TESTING_ACCESS_TOKEN}}
  17. workflow_file_name: taipy-trigger-tests.yml
  18. ref: develop
  19. wait_interval: 60
  20. propagate_failure: true
  21. trigger_workflow: true
  22. wait_workflow: true
  23. client_payload: '{"repo": "taipy", "commitSHA": "${{ github.sha }}"}'