Skip to content

feat: migrate event proto Money fields to InstrumentAmount #2574

feat: migrate event proto Money fields to InstrumentAmount

feat: migrate event proto Money fields to InstrumentAmount #2574

Workflow file for this run

name: CLA Bot Bypass
on:
pull_request_target:
types: [opened, synchronize, reopened]
permissions: {}
jobs:
cla-bot-bypass:
permissions:
statuses: write
runs-on: ubuntu-latest
if: contains(github.event.pull_request.user.login, '[bot]')
steps:
- name: Mark CLA passed for bot contributors
run: |
gh api "repos/${{ github.repository }}/statuses/${{ github.event.pull_request.head.sha }}" \
--method POST \
-f state=success \
-f description="CLA not required for bot contributors" \
-f context="license/cla" \
-f target_url="https://cla-assistant.io/meridianhub/meridian"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}