Browse Source

Merge pull request #496 from hermeznetwork/feature/integration

run integration on push to master
feature/sql-semaphore1
Pedro Sousa Grilo 3 years ago
committed by GitHub
parent
commit
f3678e8cb8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 0 deletions
  1. +17
    -0
      .github/workflows/integration.yml

+ 17
- 0
.github/workflows/integration.yml

@ -0,0 +1,17 @@
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"}}'

Loading…
Cancel
Save