Skip to content

Commit

Permalink
Merge pull request #4 from worldcoin/B-1366_cd
Browse files Browse the repository at this point in the history
[B-1366] Add GH action to trigger mpc-uniqueness-check-deploy
  • Loading branch information
mircobordoni authored Jan 30, 2024
2 parents 4693239 + dfb7160 commit 447fa51
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# General code
* @worldcoin/crypto @worldcoin/orb-backend
23 changes: 23 additions & 0 deletions .github/workflows/update-deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Update deployment ref number

on: [push]

jobs:
update-deployment:
runs-on: ubuntu-latest

steps:
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.GIT_HUB_TOKEN }}
repository: worldcoin/mpc-uniqueness-check-deploy
event-type: update-ref
client-payload: |
{
"sha": "${{ github.sha }}",
"ref": "${{ github.ref }}",
"ref_name": "${{ github.ref_name }}",
"ref_type": "${{ github.ref_type }}",
"repository": "${{ github.repository }}"
}

0 comments on commit 447fa51

Please sign in to comment.