chore(deps): bump the go-dependencies group with 10 updates #2718
Workflow file for this run
This file contains hidden or 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
| 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 }} |