Skip to content

lucasmenendez contribution to 'ceremony/test' ceremony #48

lucasmenendez contribution to 'ceremony/test' ceremony

lucasmenendez contribution to 'ceremony/test' ceremony #48

name: Verify contribution
on:
pull_request:
branches:
- ceremony/*
jobs:
verify-contribution:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
with:
lfs: true
ref: ${{ github.ref }}
- name: Checkout LFS objects
run: git lfs checkout
- name: Run toolkit
run: |
docker build -q -t vocdoni/zk-voceremony --target zk-voceremony .
docker run --rm -qt --env-file ./ceremony.env vocdoni/zk-voceremony verify
- name: Merge PR branch
if: success() && contains(github.event.pull_request.labels.*.name, 'automerge')
run: |
gh pr merge --auto ${{ github.event.number }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}