-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[B-1366] Add GH action to trigger mpc-uniqueness-check-deploy
- Loading branch information
1 parent
4693239
commit dfb7160
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# General code | ||
* @worldcoin/crypto @worldcoin/orb-backend |
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
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 }}" | ||
} |