Skip to content

chore(deps): bump the go-dependencies group with 10 updates #2718

chore(deps): bump the go-dependencies group with 10 updates

chore(deps): bump the go-dependencies group with 10 updates #2718

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 }}