Skip to content

Commit

Permalink
[B-1366] Add GH action to trigger mpc-uniqueness-check-deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
mircobordoni committed Jan 30, 2024
1 parent 4693239 commit dfb7160
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 dfb7160

Please sign in to comment.