CI check #1346
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI check | |
on: | |
schedule: | |
- cron: "1 14 * * *" #lets run this job every 12 hours. | |
workflow_dispatch: | |
jobs: | |
dispatch: | |
strategy: | |
matrix: | |
environment: ['default'] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Repository Dispatch | |
uses: peter-evans/repository-dispatch@v1 | |
with: | |
token: ${{ secrets.PAT_TRIGGER_JOB }} | |
repository: "mangata-finance/mangata-e2e" | |
event-type: run-ci | |
client-payload: '{"environment": "${{ matrix.environment }}"}' |