diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..2636397 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,2 @@ +# General code +* @worldcoin/crypto @worldcoin/orb-backend diff --git a/.github/workflows/update-deployment.yaml b/.github/workflows/update-deployment.yaml new file mode 100644 index 0000000..c4d776c --- /dev/null +++ b/.github/workflows/update-deployment.yaml @@ -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 }}" + }