mirror of
https://github.com/arnaucube/hermez-node.git
synced 2026-02-06 19:06:42 +01:00
18 lines
522 B
YAML
18 lines
522 B
YAML
name: Integration testing
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
trigger-integration:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: send event to integration-testing
|
|
run: |
|
|
curl -X POST https://api.github.com/repos/hermeznetwork/integration-testing/actions/workflows/update.yml/dispatches \
|
|
-H 'Accept: application/vnd.github.v3+json' \
|
|
-u ${{ secrets.INT_BOT_ACCESS_TOKEN }} \
|
|
--data '{"ref":"main","inputs": {"repository": "hermeznetwork/hermez-node"}}'
|