Skip to content

Commit

Permalink
fix: creates integration flow
Browse files Browse the repository at this point in the history
Signed-off-by: Allain Magyar <[email protected]>
  • Loading branch information
amagyar-iohk committed Feb 12, 2025
1 parent 5278d39 commit 1cb9034
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 8 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,3 @@ jobs:
name: lcov-report.zip
path: coverage/lcov-report
if-no-files-found: error

- name: Dispatch integration
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.ATALA_GITHUB_TOKEN }}
repository: input-output-hk/identus-integration
event-type: integration
client-payload: '{"component": "sdk-ts", "version": "${{ github.sha }}" }'
20 changes: 20 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Integration

on:
push:
branches:
- "main"

jobs:
integrate:
name: Build and test
runs-on: ubuntu-latest

steps:
- name: Dispatch integration
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.ATALA_GITHUB_TOKEN }}
repository: input-output-hk/identus-integration
event-type: integration
client-payload: '{"component": "sdk-ts", "version": "${{ github.sha }}" }'

0 comments on commit 1cb9034

Please sign in to comment.